/* Minimal Styles for Better Call Moving - DEBUG TEST DEPLOY v7.0 */

/* Accessibility Styles */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    z-index: 10000;
    font-size: 14px;
    font-weight: bold;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* Remove all focus outlines */
*:focus,
*:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}



body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Locations Archive Styles */
.locations-grid {
    background-color: #f8f9fa;
}

.location-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.location-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.location-card:hover .location-image img {
    transform: scale(1.05);
}

.location-content {
    padding: 1.5rem;
}

.location-title {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.location-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-title a:hover {
    color: #FF0000;
}

.location-excerpt {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.location-categories {
    margin-bottom: 1rem;
}

.location-categories .badge {
    margin-right: 0.5rem;
    margin-bottom: 0.25rem;
}

/* Single Location Styles */
.single-location .main-content {
    padding: 0;
}

/* Container styles like in original template */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
}

@media (max-width: 767px) {
    .container {
        max-width: 540px;
    }
}

@media (max-width: 575px) {
    .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Preloader styles removed */

/* Google Rating Styles */
.google-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.google-rating .rating-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.google-rating .google-logo {
    height: 20px;
    width: auto;
}

/* Ratings Section Styles */
.ratings-section {
    padding-bottom: 50px;
}

/* Custom column widths for ratings section */
.ratings-title-col {
    flex: 0 0 28%;
    max-width: 28%;
}

.ratings-items-col {
    flex: 0 0 72%;
    max-width: 72%;
}

/* Our Partners Section Styles */
.our-partners {
    padding: 30px 0;
}

.partners-container {
    background-color: #333;
    border-radius: 20px;
    overflow: hidden;
    padding: 20px 0;
    margin: 0 auto;
    position: relative;
}

.partners-container::before,
.partners-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.partners-container::before {
    left: 0;
    background: linear-gradient(to right, #333, transparent);
}

.partners-container::after {
    right: 0;
    background: linear-gradient(to left, #333, transparent);
}

/* Video Review Image Styles */
.video-review-image {
    text-align: center;
    margin: 40px 0 0 0;
}

.video-review-image img {
    max-width: 100%;
    height: auto;
}

/* Quick Call Popup Styles */
.quick-call-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.quick-call-popup-overlay.show {
    display: flex;
}

.quick-call-popup {
    background: white;
    border-radius: 10px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.quick-call-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #999;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-call-popup-close:hover {
    color: #333;
}

.quick-call-popup h3 {
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
    font-weight: 700;
}

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

.quick-call-form label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: 600;
}

.quick-call-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.quick-call-form .form-control:focus {
    outline: none;
    border-color: #FF0000;
    box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.1);
}

.quick-call-checkbox {
    margin: 20px 0;
}

.quick-call-checkbox input[type="checkbox"] {
    margin-right: 10px;
}

.quick-call-checkbox label {
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.quick-call-form button[type="submit"] {
    background: #FF0000;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.quick-call-form button[type="submit"]:hover {
    background: #e60000;
}

.quick-call-form button[type="submit"]:disabled {
    background: #ccc;
    cursor: not-allowed;
}

body.popup-open {
    overflow: hidden;
}

/* Price-2 Section Styles */
.price-2-section {
    padding: 80px 0;
    background: #fff;
}

.price-2-content {
    padding-right: 40px;
}

.price-2-content .section-title {
    text-align: left;
}

.price-2-content .section-title h3 {
    text-align: left;
    justify-content: flex-start;
}

.price-2-content .section-title h2 {
    text-align: left;
}

.price-2-description h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.price-2-description p {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.price-2-button {
    margin-top: 30px;
}

.price-2-table-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 40px;
}

.price-2-table {
    background: #fff;
    border: 3px solid #333;
    border-radius: 25px;
    overflow: hidden;
    width: 100%;
    max-width: 520px;
    padding: 25px;
}

.price-table-header {
    background: #fff;
}

.price-table-header .header-row {
    padding: 8px 0;
    border-bottom: none;
}

.price-table-header .price-table-col {
    font-size: 18px;
    font-weight: 700;
    color: #000 !important;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.price-table-header .price-table-col:first-child {
    flex: 2;
    justify-content: flex-start;
}

.price-table-header .price-table-col:nth-child(2) {
    flex: 1;
    justify-content: center;
    text-align: center;
}

.price-table-header .price-table-col:last-child {
    flex: 1;
    justify-content: flex-end;
    text-align: right;
}

.price-table-body {
    background: #fff;
}

.price-table-row {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: none;
}

.price-table-row:last-child {
    border-bottom: none;
}

/* Clickable price table rows */
.price-table-row.clickable-row {
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.price-table-row.clickable-row:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.price-table-row.clickable-row:hover .price-table-col {
    color: #333;
}

.price-table-row .price-table-col {
    font-family: 'DM Sans', sans-serif;
    color: #666;
    display: flex;
    align-items: center;
    border-right: none;
}

.price-table-row .price-table-col:first-child {
    flex: 2;
    font-size: 16px;
    font-weight: 500;
    gap: 12px;
    justify-content: flex-start;
}

.price-table-row .price-table-col:nth-child(2) {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    justify-content: center;
    text-align: center;
}

.price-table-row .price-table-col:last-child {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    justify-content: flex-end;
    text-align: right;
    gap: 8px;
}

.check-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}

.arrow-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .price-2-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .price-2-description h4 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .price-2-section {
        padding: 60px 0;
    }
    
    .price-2-table {
        max-width: 100%;
        padding: 20px;
    }
    
    .price-table-row {
        padding: 12px 0;
    }
    
    .price-table-row .price-table-col:first-child,
    .price-table-row .price-table-col:nth-child(2),
    .price-table-row .price-table-col:last-child {
        font-size: 14px;
    }
    
    .price-2-description h4 {
        font-size: 20px;
    }
    
    .price-2-description p {
        font-size: 15px;
    }
    
    .check-icon {
        width: 16px;
        height: 16px;
    }
    
    .arrow-icon {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 576px) {
    .price-2-table {
        padding: 15px;
    }
    
    .price-table-row {
        padding: 10px 0;
    }
    
    .price-table-row .price-table-col:first-child,
    .price-table-row .price-table-col:nth-child(2),
    .price-table-row .price-table-col:last-child {
        font-size: 13px;
    }
    
    .price-2-description h4 {
        font-size: 18px;
    }
    
    .check-icon {
        width: 14px;
        height: 14px;
    }
}

.partners-marquee {
    display: flex;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.partners-marquee:hover {
    animation-play-state: paused;
}

.partner-logo {
    flex-shrink: 0;
    margin: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    height: 64px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.partner-logo:hover img {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .our-partners {
        padding: 40px 0;
    }
    
    .partners-container {
        padding: 30px 0;
        border-radius: 15px;
    }
    
    .partners-container::before,
    .partners-container::after {
        width: 80px;
    }
    
    .partner-logo {
        margin: 0 30px;
    }
    
    .partner-logo img {
        height: 60px;
        max-width: 120px;
    }
}

@media (max-width: 576px) {
    .partners-container {
        padding: 25px 0;
        border-radius: 12px;
    }
    
    .partners-container::before,
    .partners-container::after {
    width: 60px;
    }
    
    .partner-logo {
        margin: 0 20px;
    }
    
    .partner-logo img {
        height: 50px;
        max-width: 100px;
    }
}

.ratings-title-wrapper {
    display: flex;
    align-items: center;
    padding-right: 20px;
}

.ratings-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.1;
    color: #333;
    margin-bottom: 0;
    text-transform: uppercase;
    text-align: left;
}

.ratings-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.rating-item {
    text-align: center;
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.rating-icon {
    flex-shrink: 0;
}

.rating-icon img {
    height: 65px;
    width: auto;
    max-width: 75px;
}

.rating-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.rating-score {
    font-family: 'DM Sans', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #333;
    margin-bottom: 3px;
    line-height: 1;
}

.rating-reviews {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

/* Responsive */
@media (max-width: 1200px) {
    .ratings-items {
        gap: 15px;
    }
    
    .rating-score {
        font-size: 30px;
    }
    
    .rating-icon img {
        height: 55px;
    }
}

@media (max-width: 992px) {
    .ratings-title {
        font-size: 36px;
    }
    
    .ratings-items {
        gap: 12px;
    }
    
    .rating-item {
        gap: 8px;
    }
    
    .rating-icon img {
        height: 45px;
    }
    
    .rating-score {
        font-size: 26px;
    }
    
    .rating-reviews {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .ratings-section {
        padding: 60px 0;
    }
    
    .ratings-title-col,
    .ratings-items-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .ratings-title-wrapper {
        padding-right: 0;
        margin-bottom: 40px;
        justify-content: center;
    }
    
    .ratings-title {
        font-size: 32px;
        text-align: center;
    }
    
    .local-moving-text {
        text-align: justify;
    }
    
    .google-rating {
        justify-content: center;
    }
    
    .ratings-items {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .rating-item {
        flex: 0 0 calc(50% - 10px);
        justify-content: center;
    }
    
    .rating-content {
        align-items: center;
        text-align: center;
    }
    
    .rating-score {
        font-size: 24px;
    }
    
    .rating-icon img {
        height: 40px;
    }
}

@media (max-width: 576px) {
    .ratings-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: auto;
        gap: 20px 15px;
        justify-items: center;
        align-items: center;
    }
    
    .rating-item {
        flex: none;
        width: 100%;
        max-width: 202px;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .rating-icon img {
        height: 50px;
        width: auto;
    }
    
    .ratings-title {
        font-size: 35px;
        line-height: 1.2;
    }
    
    .rating-score {
        font-size: 26px;
        font-weight: 700;
    }
    
    .rating-reviews {
        font-size: 14px;
        font-weight: 500;
    }
}

@media (max-width: 400px) {
    .ratings-items {
        gap: 15px 10px;
    }
    
    .rating-item {
        max-width: 173px;
        gap: 10px;
    }
    
    .rating-icon img {
        height: 43px;
    }
    
    .ratings-title {
        font-size: 31px;
    }
    
    .rating-score {
        font-size: 23px;
    }
    
    .rating-reviews {
        font-size: 13px;
    }
}

/* Top Bar Styles */
.top-bar {
    background-color: #FF0000;
    color: white;
    padding: 10px 0;
    font-size: 14px;
    position: relative;
    z-index: 1001;
}

.top-bar-locations {
    display: flex;
    align-items: center;
}

.scrolling-locations {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.scrolling-locations span,
.scrolling-locations a {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.scrolling-locations a:hover {
    opacity: 0.8;
    color: white;
}

.top-bar-contact {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
}

.top-bar-contact a {
    color: white;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s ease;
}

.top-bar-contact a:hover {
    opacity: 0.8;
}

.top-bar-contact i {
    font-size: 12px;
}

/* Header Styles */
/* Old header styles removed - using new clean styles at the end of file */

.header-sticky {
    position: relative;
    top: 0;
    z-index: 100;
}

.navbar {
    padding: 25px 0;
    align-items: center;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

/* Main Menu Styles - Exact from Verstka */
.main-menu .nav-menu-wrapper {
    flex: 1;
    text-align: center;
    margin: 0 20px;
}

.main-menu .nav-menu-wrapper > ul {
    align-items: center;
    display: inline-flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-nav .nav-item,
.main-menu ul li,
.main-menu ul .menu-item {
    margin: 0;
    position: relative;
}

.navbar-nav .nav-link,
.main-menu ul li a,
.main-menu ul .menu-item a {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2em;
    padding: 14px 20px !important;
    margin: 0;
    color: white !important;
    text-transform: capitalize;
    text-decoration: none !important;
    transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.main-menu ul li a:hover,
.main-menu ul li a:focus,
.main-menu ul .menu-item a:hover,
.main-menu ul .menu-item a:focus {
    color: #FF0000 !important;
    text-decoration: none !important;
}

.main-menu ul li.submenu > a:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 14px;
    margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
    color: #FF0000;
}

/* Dropdown Menu Styles */
.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 230px;
    border-radius: 16px;
    position: absolute;
    left: 0;
    top: 100%;
    background: #FF0000;
    transition: all 0.3s ease-in-out;
    text-align: left;
}

.main-menu ul li:hover > ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li a {
    font-family: 'DM Sans', sans-serif;
    color: white;
    padding: 8px 20px !important;
    transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover {
    color: #062E39;
    background-color: transparent;
    padding: 8px 20px 8px 23px !important;
}

/* Стилі видалені - замінені на фіксований хедер */

.btn-highlighted {
    font-family: 'DM Sans', sans-serif;
    background-color: #FF0000;
    border: 2px solid #FF0000;
    color: white;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-highlighted:hover {
    background-color: #CC0000;
    border-color: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    text-decoration: none;
    color: white;
}

/* Hero Section Styles */
.hero-section {
    background: url('../img/hero-bg.jpg') center/cover no-repeat;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    padding: 2rem 2rem;
    text-align: right;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-title .text-red {
    color: #FF0000;
}

.hero-title .text-white {
    color: white;
    white-space: nowrap;
}

.text-red {
    color: #FF0000;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Quote Form Styles */
.quote-form-container {
    background: white;
    border-radius: 40px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;
    width: 470px;
    max-width: 100%;
    animation: slideInUp 0.8s ease-out;
}

/* Hero section form specific width */
.hero-section .quote-form-container {
    width: 440px !important;
}

/* Hero section form field styles */
.hero-section .quote-form .form-control {
    height: 95px;
    border-radius: 8px;
    padding: 35px 20px 20px 20px;
    font-size: 16px;
}



.hero-section .quote-form .form-icon {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 18px;
}



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

.quote-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.quote-title {
    color: #FF0000;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.quote-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #000;
}

.quote-form .form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

/* Form labels removed - using placeholders instead */

.quote-form .form-control::placeholder {
    color: #565969;
    font-size: 16px;
    font-weight: 300;
    font-family: 'DM Sans', sans-serif;
}

.quote-form select.form-control {
    color: #565969;
    font-size: 16px;
    font-weight: 300;
    font-family: 'DM Sans', sans-serif;
}

/* Add labels above form fields */
.quote-form .form-group::before {
    content: attr(data-label);
    position: absolute;
    top: 15px;
    left: 20px;
    background: transparent;
    padding: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    z-index: 1;
}

.quote-form .form-group[data-label="Move Date"]::before {
    content: "Move Date";
}

.quote-form .form-group[data-label="Move Size"]::before {
    content: "Move Size";
}

.quote-form .form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 400;
    background: white;
    appearance: none;
}

.quote-form .form-control:focus {
    outline: none;
    border-color: #FF0000;
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}

.quote-form .form-select {
    background-image: none;
    padding-right: 50px;
}

.form-icon {
    position: absolute;
    right: 16px;
    top: calc(50% + 12px);
    transform: translateY(-50%);
    color: #999;
    font-size: 16px;
    pointer-events: none;
}



.btn-arrow {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

/* Form buttons styles */
.hero-form-btn,
.cta-form-btn {
    width: 204px !important;
    height: 50px !important;
    display: block !important;
    margin: 1rem auto 0 auto !important;
    text-align: center !important;
}

.hero-form-btn .btn-arrow,
.cta-form-btn .btn-arrow {
    margin-left: 8px;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 991px) {
    .top-bar {
        display: none;
    }
    
    .main-header {
        top: 0 !important;
    }
    
    .top-bar-contact {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .hero-content {
        text-align: center;
        padding-right: 0;
    }
    
    /* Services section tablet */
    .service-item {
        margin-bottom: 25px;
        padding: 35px 25px 20px 25px;
    }
    
    .service-item h3 {
        font-size: 19px;
    }
    
    .service-item .icon-box img {
        width: 55px;
        height: 55px;
    }
    
    .section-title h2 {
        font-size: 38px;
    }
    
    /* Who We Are section tablet */
    .who-we-are {
        padding: 40px 0;
    }
    
    .who-we-item {
        margin-bottom: 25px;
        padding: 18px;
    }
    
    .who-we-item .icon-box {
        width: 55px;
        height: 55px;
        margin-right: 18px;
    }
    
    .who-we-item .icon-box img {
        max-width: 28px;
    }
    
    .contact-us-circle img {
        max-width: 120px;
    }
    
    .hero-title {
        font-size: 3rem;
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
    }
    
    .quote-form-container {
        margin-top: 2rem;
        padding: 30px 20px;
    }
    
    .hero-section .quote-form .form-control {
        height: 80px;
        padding: 30px 20px 15px 20px;
    }
    
    .hero-section .quote-form .form-group::before {
        top: 12px;
        font-size: 16px;
    }
    
    .main-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block !important;
        position: relative;
        z-index: 1000;
    }
    
    .header-btn {
        display: none;
    }
}

@media (max-width: 767px) {
    .scrolling-locations {
        gap: 1rem;
    }
    
    .scrolling-locations span {
        font-size: 13px;
    }
    
    .top-bar-contact {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .quote-title {
        font-size: 24px;
    }
    
    .quote-form-container {
        padding: 25px 15px;
    }
    
    .hero-section .quote-form .form-control {
        height: 75px;
        padding: 28px 15px 12px 15px;
    }
    
    .hero-section .quote-form .form-group::before {
        top: 10px;
        left: 15px;
        font-size: 14px;
    }
    
    .hero-section .quote-form .form-icon {
        right: 15px;
        font-size: 16px;
    }
    

    
    /* Services section mobile */
    .service-item {
        margin-bottom: 20px;
        padding: 30px 20px 15px 20px;
        border-radius: 30px;
    }
    
    .service-item h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .service-item p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .service-item .icon-box img {
        width: 50px;
        height: 50px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .section-title h3 {
        font-size: 12px;
    }
    
    /* Who We Are section mobile */
    .who-we-are {
        padding: 30px 0;
    }
    
    .who-we-item {
        margin-bottom: 20px;
        padding: 15px;
    }
    
    .who-we-item .icon-box {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .who-we-item .icon-box img {
        max-width: 25px;
    }
    
    .who-we-item-content h3 {
        font-size: 16px;
        line-height: 1.4;
    }
    
    .contact-us-circle img {
        max-width: 100px;
    }
}

/* Reviews Section Styles */
.reviews-section {
    padding: 50px 0;
    background: #F7F7F7;
}

/* Desktop styles for reviews */
@media (min-width: 1200px) {
    .reviews-section {
        padding: 50px 0;
    }
}

.reviews-section .section-title {
    text-align: left;
    margin-bottom: 40px;
}

.reviews-section .section-title h3 {
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6em;
    text-transform: uppercase;
    color: #333;
    padding-left: 34px;
    margin-bottom: 10px;
}

.reviews-section .section-title h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url('../img/icon-sub-heading.svg') no-repeat center;
    background-size: contain;
}

.reviews-section .section-title h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2em;
    color: #333;
    margin: 0;
}

.reviews-section .section-title h2 span {
    color: #FF0000;
}

.reviews-image {
    text-align: center;
    margin-top: 20px;
}

.reviews-image img {
    width: 100%;
    max-width: 1200px;
    height: auto;
}

/* Reviews section responsive */
@media (max-width: 991px) {
    .reviews-section {
        padding: 40px 0;
    }
    
    .reviews-image {
        margin-top: 15px;
    }
    
    .reviews-image img {
        border-radius: 15px;
    }
}

@media (max-width: 767px) {
    .reviews-section {
        padding: 30px 0;
    }
    
    .reviews-image {
        margin-top: 12px;
    }
    
    .reviews-image img {
        border-radius: 10px;
    }
}

/* Prices Section Styles */
.prices-section {
    padding: 50px 0;
    background: white;
}

/* Desktop styles for prices */
@media (min-width: 1200px) {
    .prices-section {
        padding: 50px 0;
    }
}

.prices-section .section-title {
    text-align: left;
    margin-bottom: 60px;
}

/* Prices section specific item-title styling */
.prices-section .item-title {
    font-size: 2rem;
    font-weight: 800;
}

.price-block {
    background: #F5F5F5;
    border: 3px solid #FF0000;
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.price-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.price-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.price-icon img {
    width: 80px;
    height: 60px;
    object-fit: contain;
}

.price-details h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.price-details p {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
}

.price-amount {
    margin-bottom: 25px;
}

.price-amount span {
    font-size: 48px;
    font-weight: 700;
    color: #333;
}

.price-features {
    flex-grow: 1;
    margin-bottom: 30px;
}

.price-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.price-features ul li {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.price-features ul li::before {
    content: '•';
    color: #FF0000;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.price-button {
    margin-top: auto;
}

.btn-get-quote {
    background: #FF0000;
    color: white;
    padding: 15px 40px 15px 30px;
    border-radius: 48px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 50px;
}

.btn-get-quote::after {
    content: '';
    width: 16px;
    height: 16px;
    background: url('../img/arrow-white.svg') no-repeat center;
    background-size: contain;
}

.btn-get-quote:hover {
    background: #CC0000;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

/* Prices section responsive */
@media (max-width: 991px) {
    .prices-section {
        padding: 40px 0;
    }
    
    .price-block {
        padding: 35px 25px;
        margin-bottom: 35px;
    }
    
    .price-header h3 {
        font-size: 24px;
    }
    
    .price-amount span {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .prices-section {
        padding: 30px 0;
    }
    
    .price-block {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .price-header h3 {
        font-size: 22px;
    }
    
    .price-amount span {
        font-size: 36px;
    }
    
    .price-features ul li {
        font-size: 13px;
        margin-bottom: 10px;
    }
}

/* CTA Form Section Styles */
.cta-form-1 {
    background: #212121 url('../img/why-choose-us-bg.png') no-repeat center center;
    background-size: cover;
    margin-top: 35px;
    padding: 50px 0;
    position: relative;
}

/* Desktop styles for CTA form */
@media (min-width: 1200px) {
    .cta-form-1 {
        padding: 50px 0;
        margin-top: 140px;
    }
}



.cta-form-1 .container {
    position: relative;
}

.why-choose-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 60px;
    align-items: center;
}

.why-choose-content,
.quote-form-container {
    width: calc(50% - 30px);
}

/* CTA Form specific styles */
.cta-form-1 .quote-form-container {
    width: 470px;
    height: 600px;
    margin-top: -140px;
    position: relative;
    z-index: 3;
}

.cta-form-1 .quote-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 32px;
}

/* CTA Form field styles */
.cta-form-1 .quote-form .form-control {
    height: 95px;
    border-radius: 8px;
    padding: 35px 20px 20px 20px;
    font-size: 16px;
    color: #999;
}



.cta-form-1 .quote-form .form-icon {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 18px;
}



.cta-form-1 .section-title {
    text-align: left;
}

/* CTA Section Title Styles */
.cta-section .section-title {
    font-size: 2.9rem;
    line-height: 1.2;
    font-weight: 600;
}

.text-white {
    color: white;
}

.cta-form-1 .section-title h3 {
    color: #ccc;
}

.why-choose-body ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.why-choose-body ul li {
    color: #ccc;
    line-height: 1.5em;
    padding-left: 30px;
    background-image: url('../img/icon-sub-heading.svg');
    background-repeat: no-repeat;
    background-position: left top 1px;
    background-size: 22px auto;
    margin-bottom: 15px;
}

.why-choose-body ul li:last-child {
    margin-bottom: 0;
}



/* CTA Form responsive */
@media (max-width: 991px) {
    .cta-form-1 {
        padding: 40px 0;
        margin-top: 0;
    }
    
    .why-choose-content,
    .quote-form-container {
        width: 100%;
    }
    
    .quote-form-container {
        margin-top: 30px;
    }
    
    .cta-form-1 .quote-form-container {
        width: 100%;
        height: auto;
        margin-top: 30px;
    }
    
    .cta-form-1 .quote-title {
        font-size: 28px;
    }
    
    .cta-form-1 .quote-form .form-control {
        height: 80px;
        padding: 30px 20px 15px 20px;
    }
    
    .cta-form-1 .quote-form .form-group::before {
        top: 12px;
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .cta-form-1 {
        padding: 30px 0;
    }
    
    .cta-form-1 .quote-form-container {
        width: 100%;
        height: auto;
        margin-top: 20px;
        padding: 30px 20px;
    }
    
    .cta-form-1 .quote-title {
        font-size: 24px;
    }
    
    .cta-form-1 .quote-form .form-control {
        height: 75px;
        padding: 28px 15px 12px 15px;
    }
    
    .cta-form-1 .quote-form .form-group::before {
        top: 10px;
        left: 15px;
        font-size: 14px;
    }
    
    .cta-form-1 .quote-form .form-icon {
        right: 15px;
        font-size: 16px;
    }
    

    
    .why-choose-body ul li {
        padding-left: 25px;
        background-size: 18px auto;
        margin-bottom: 12px;
    }
    

}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

/* Our Services Section Styles */
.our-services {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
    padding-left: 34px;
    position: relative;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url('../img/icon-sub-heading.svg') no-repeat;
    background-position: left center;
    background-size: cover;
    width: 24px;
    height: 24px;
}



.section-main-title {
    font-size: 2.9rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin: 0;
}

.service-item {
    background: #F7F7F7;
    border-radius: 40px;
    padding: 40px 30px 20px 30px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: none;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    background: #FF0000;
    border-radius: 0 0 40px 40px;
    transition: all 0.4s ease;
    z-index: 0;
}

.service-item:hover::before {
    height: 100%;
    border-radius: 40px;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.3);
}

.service-item .icon-box {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.service-item .icon-box img {
    width: 60px;
    height: 60px;
    transition: all 0.4s ease;
}

.service-item:hover .icon-box img {
    filter: brightness(0) invert(1);
    transform: rotateY(180deg);
}

.service-content {
    position: relative;
    z-index: 1;
}

.service-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: all 0.4s ease;
}

.service-item:hover h3 {
    color: white;
}

.service-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.service-item:hover p {
    color: white;
}

.service-btn {
    position: relative;
    z-index: 1;
}

.readmore-btn {
    position: relative;
    color: #FF0000;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8em;
    text-transform: capitalize;
    display: inline-block;
    padding-right: 40px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.service-item:hover .readmore-btn {
    color: white;
}

.readmore-btn::before {
    content: '\f061';
    position: absolute;
    right: 0;
    top: 50%;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 14px;
    line-height: normal;
    color: white;
    width: 30px;
    height: 30px;
    background-color: #FF0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(0, -50%);
    transition: all 0.4s ease;
}

.readmore-btn:hover {
    color: #CC0000;
    text-decoration: none;
}

.readmore-btn:hover::before {
    background-color: #CC0000;
}

.service-item:hover .readmore-btn::before {
    background: white;
    color: #FF0000;
}

.section-footer-text {
    text-align: center;
    margin-top: 40px;
}

.section-footer-text p {
    font-size: 18px;
    color: #333;
    margin: 0;
}

.contact-link {
    color: #FF0000;
    text-decoration: underline;
    font-weight: 600;
}

.contact-link:hover {
    color: #CC0000;
    text-decoration: underline;
}

/* Section Title Styles */
.section-title {
    margin-bottom: 40px;
    text-align: center;
}

.section-title h3 {
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6em;
    text-transform: uppercase;
    color: #666;
    padding-left: 34px;
    margin-bottom: 10px;
}

.section-title h3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url('../img/icon-sub-heading.svg') no-repeat;
    background-position: left center;
    background-size: cover;
    width: 24px;
    height: 24px;
}



.section-title h2 {
    font-size: 46px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0;
    color: #333;
}

.section-title h2 span {
    color: #FF0000;
}

.section-title p {
    margin-top: 20px;
    margin-bottom: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Who We Are Section Styles */
.who-we-are {
    padding: 50px 0;
}

.who-we-are .section-title {
    text-align: left;
}

.who-we-item {
    position: relative;
    border: 1px solid #E5E5E5;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.who-we-item:last-child {
    margin-bottom: 0;
}

.who-we-item::before {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #FF0000;
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.who-we-item:hover::before {
    height: 100%;
}

.who-we-item .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    background: #FF0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.who-we-item .icon-box::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: #062E39;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.who-we-item:hover .icon-box::before {
    transform: scale(1);
}

.who-we-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    z-index: 1;
}

.who-we-item-content {
    position: relative;
    width: calc(100% - 80px);
    z-index: 1;
}

.who-we-item-content h3 {
    font-size: 20px;
    line-height: 1.4em;
    transition: all 0.3s ease-in-out;
}

.who-we-item:hover .who-we-item-content h3 {
    color: white;
}

.who-we-are-images {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    gap: 30px;
    margin-left: 20px;
}

.who-we-image-box-1,
.who-we-image-box-2 {
    width: calc(50% - 15px);
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.who-we-img-1 figure,
.who-we-img-2 figure,
.who-we-img-3 figure,
.who-we-img-4 figure {
    margin: 0;
    border-radius: 30px;
    overflow: hidden;
}

.who-we-img-1 img,
.who-we-img-2 img,
.who-we-img-3 img,
.who-we-img-4 img {
    width: 100%;
    height: auto;
    border-radius: 30px;
}

.who-we-are-images .contact-us-circle {
    position: absolute;
    top: 50%;
    bottom: auto;
    left: 50%;
    transform: translate(-50%, -50%);
}

.who-we-are-images .contact-us-circle a {
    display: block;
    border-radius: 50%;
}

.who-we-are-images .contact-us-circle img {
    width: 100%;
    max-width: 138px;
    border-radius: 50%;
    animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* What We Do Section Styles */
.what-we-do {
    padding: 50px 0;
}

/* Desktop styles for What We Do */
@media (min-width: 1200px) {
    .what-we-do {
        padding: 50px 0;
    }
}

.what-we-do-box {
    margin-top: 70px;
}

.what-we-do-image,
.what-we-do-image figure,
.what-we-do-image img {
    height: 100%;
}

.what-we-do-image {
    margin-top: -70px;
}

.what-we-do-image figure {
    display: block;
    border-radius: 40px;
}

.what-we-do-image img {
    width: 100%;
    aspect-ratio: 1 / 1.04;
    object-fit: cover;
    border-radius: 40px;
}

.what-we-content {
    position: relative;
    background: #212121;
    padding: 50px;
    border-radius: 40px;
    margin-left: -50px;
    z-index: 1;
}

.what-we-content .section-title {
    border-bottom: 1px solid #444;
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.what-we-content .section-title h3,
.what-we-content .section-title h2 {
    color: white;
}

.what-we-content .section-title p {
    color: #ccc;
}

.what-we-body {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 80px;
}

.what-we-item {
    position: relative;
    width: calc(50% - 40px);
    display: flex;
}

.what-we-item:after {
    position: absolute;
    content: '';
    height: 100%;
    width: 1px;
    top: 0;
    right: -40px;
    bottom: 0;
    background: #444;
}

.what-we-item:nth-child(2n + 2):after {
    display: none;
}

.what-we-item .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.what-we-item .icon-box::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: #FF0000;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.what-we-item:hover .icon-box::before {
    transform: scale(1);
}

.what-we-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.what-we-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.what-we-item-content {
    width: calc(100% - 80px);
}

.what-we-item-content h3 {
    color: white;
    text-transform: capitalize;
    font-size: 20px;
    margin-bottom: 5px;
}

.what-we-item-content p {
    color: white;
    margin: 0;
}

.what-we-counter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 150px;
    margin-top: 90px;
}

.what-we-counter-item {
    position: relative;
    width: calc(25% - 112.5px);
    text-align: center;
}

.what-we-counter-item:after {
    position: absolute;
    content: '';
    height: 100%;
    width: 1px;
    top: 0;
    right: -75px;
    bottom: 0;
    background: #E5E5E5;
}

.what-we-counter-item:last-child:after,
.what-we-counter-item:nth-child(4n + 4):after {
    display: none;
}

.what-we-counter-item h2 {
    font-size: 46px;
    margin-bottom: 5px;
}

.what-we-counter-item .section-title {
    font-size: 2.9rem;
    margin-bottom: 5px;
    font-weight: 700;
    color: #282828;
    text-align: center;
}

.what-we-counter-item .counter,
.what-we-counter-item .counter-suffix {
    color: #282828;
    font-size: 2.9rem;
    font-weight: 700;
}

.what-we-counter-item p {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4em;
    text-transform: capitalize;
    margin: 0;
    color: #565969;
}

/* What We Do responsive */
@media (max-width: 991px) {
    .what-we-do {
        padding: 50px 0;
    }

    .what-we-do-box {
        margin-top: 0px;
    }

    .what-we-do-image figure,
    .what-we-do-image img {
        border-radius: 26px;
    }

    .what-we-do-image {
        margin-top: 0px;
    }

    .what-we-do-image img {
        aspect-ratio: 1 / 0.7;
    }

    .what-we-content {
        margin-left: 0;
        margin-top: 30px;
        border-radius: 26px;
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .what-we-do-image img {
        aspect-ratio: 1 / 0.9;
    }
    
    .what-we-content {
        padding: 20px;
    }

    .what-we-content .section-title {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
}

/* Destination Section Styles */
.destination-section {
    padding: 50px 0;
    background: white;
}

/* Desktop styles for Destination */
@media (min-width: 1200px) {
    .destination-section {
        padding: 50px 0;
    }
}

.destination-section .section-title {
    text-align: left;
    margin-bottom: 40px;
}

.destination-section .section-title h3 {
    padding-left: 34px;
    position: relative;
}

.destination-section .section-title h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url('../img/icon-sub-heading.svg') no-repeat center;
    background-size: contain;
}

.destination-section .section-title h2 span {
    color: #FF0000;
}

/* Destination Main Title (section-additional-title) */
.destination-section .section-additional-title {
    max-width: 850px;
    font-size: 16px;
    color: #565969;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Destination Block Description */
.destination-block-description {
    max-width: 850px;
    font-size: 16px;
    color: #565969;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: left;
}

.destination-block-description p {
    margin-bottom: 16px;
}

.destination-block-description p:last-child {
    margin-bottom: 0;
}

/* Destination Content (without tabs) */
.destination-content {
    margin-top: 40px;
}

/* Tab Buttons */
.tab-buttons {
    display: flex;
    gap: 0;
    margin-bottom: 40px;
    width: 530px;
}

.tab-btn {
    background: white;
    border: 1px solid #B2B2B2;
    padding: 0;
    height: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    border-radius: 0;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-btn:first-child {
    border-radius: 25px 0 0 25px;
    border-right: none;
}

.tab-btn:last-child {
    border-radius: 0 25px 25px 0;
    border-left: none;
}

.tab-btn.active {
    background: #FF0000;
    color: white;
    border-color: #FF0000;
}

.tab-btn:hover {
    background: #FF0000;
    color: white;
    border-color: #FF0000;
}

/* Tab Content */
.tab-content {
    margin-top: 40px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Destination Headers */
.destination-headers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.destination-header-group h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 0;
    padding-bottom: 10px;
    display: inline-block;
}

/* Destination Grid */
.destination-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.destination-column {
    margin-bottom: 0;
}

.destination-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.destination-list li {
    position: relative;
    padding-left: 25px;
}

.destination-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: url('../img/check.svg') no-repeat center;
    background-size: contain;
}

.destination-list li a {
    color: #4D4D4D;
    text-decoration: underline;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    display: block;
    padding: 5px 0;
}

.destination-list li a:hover {
    color: #FF0000;
}

/* Desktop - show desktop structure, hide mobile */
@media (min-width: 768px) {
    .destination-desktop {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 60px !important;
    }
    
    .destination-mobile {
        display: none !important;
    }
    
    /* Desktop group styling */
    .desktop-group {
        display: block;
    }
    
    /* Desktop header styling */
    .desktop-header {
        margin-bottom: 20px;
    }
    
    .desktop-header h4 {
        font-size: 20px;
        font-weight: 700;
        color: #333;
        margin-bottom: 0;
        text-align: left;
    }
    
    /* Desktop columns container - 2 columns side by side within each group */
    .desktop-columns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* Destination responsive */
@media (max-width: 991px) {
    .destination-section {
        padding: 60px 0 !important;
    }
    
    .destination-section .section-title {
        margin-bottom: 40px !important;
        text-align: center !important;
    }
    
    .destination-section .section-title h2 {
        font-size: 36px !important;
    }
    
    .destination-content {
        margin-top: 30px !important;
    }
    
    .tab-buttons {
        flex-direction: row !important;
        gap: 0 !important;
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto 40px auto !important;
    }
    
    .tab-btn {
        height: 45px !important;
        font-size: 14px !important;
        padding: 0 15px !important;
    }
    
    .tab-btn:first-child {
        border-radius: 22px 0 0 22px !important;
        border-right: none !important;
    }
    
    .tab-btn:last-child {
        border-radius: 0 22px 22px 0 !important;
        border-left: none !important;
    }
    
    .destination-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px 20px !important;
    }
    
    .destination-headers {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        margin-bottom: 40px !important;
    }
    
    .destination-header-group h4 {
        font-size: 18px !important;
        text-align: center !important;
    }
}

@media (max-width: 767px) {
    .destination-section {
        padding: 40px 0 !important;
    }
    
    .destination-section .section-title {
        margin-bottom: 30px !important;
    }
    
    .destination-section .section-title h2 {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }
    
    .destination-content {
        margin-top: 20px !important;
    }
    
    .tab-buttons {
        flex-direction: row !important;
        gap: 0 !important;
        max-width: 100% !important;
        margin-bottom: 30px !important;
    }
    
    .tab-btn {
        height: 40px !important;
        font-size: 14px !important;
        padding: 0 10px !important;
    }
    
    .tab-btn:first-child {
        border-radius: 20px 0 0 20px !important;
        border-right: none !important;
    }
    
    .tab-btn:last-child {
        border-radius: 0 20px 20px 0 !important;
        border-left: none !important;
    }
    
    .destination-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px 15px !important;
    }
    
    .destination-headers {
        display: none !important;
    }
    
    /* Hide desktop structure on mobile */
    .destination-desktop {
        display: none !important;
    }
    
    /* Show mobile structure */
    .destination-mobile {
        display: block !important;
    }
    
    /* Mobile group styling */
    .mobile-group {
        margin-bottom: 30px !important;
    }
    
    .mobile-group:last-child {
        margin-bottom: 0 !important;
    }
    
    /* Mobile header styling */
    .mobile-header {
        font-size: 16px !important;
        font-weight: 700 !important;
        color: #333 !important;
        margin-bottom: 20px !important;
        text-align: left !important;
    }
    
    /* Mobile columns container */
    .mobile-columns {
        display: flex !important;
        justify-content: space-between !important;
        gap: 20px !important;
    }
    
    /* Mobile column styling */
    .mobile-column {
        flex: 1 !important;
        width: calc(50% - 10px) !important;
    }
    
    .destination-list {
        gap: 12px !important;
    }
    
    .destination-list li a {
        font-size: 15px !important;
        padding: 8px 0 !important;
    }
    
    .destination-list li::before {
        width: 14px !important;
        height: 14px !important;
    }
    
    .destination-list li {
        padding-left: 22px !important;
    }
}

@media (max-width: 576px) {
    .destination-section {
        padding: 30px 0 !important;
    }
    
    .destination-section .section-title h2 {
        font-size: 24px !important;
    }
    
    .tab-btn {
        height: 40px !important;
        font-size: 13px !important;
        padding: 0 8px !important;
    }
    
    .destination-header-group h4 {
        font-size: 15px !important;
    }
    
    .destination-list li a {
        font-size: 14px !important;
    }
    
    .destination-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px 10px !important;
    }
    
    .destination-column {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 400px) {
    .destination-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px 8px !important;
    }
    
    .destination-list li a {
        font-size: 13px !important;
        padding: 8px 0 !important;
    }
    
    .destination-section .section-title h2 {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }
}

/* Our Blog Section Styles */
.our-blog {
    padding: 50px 0 35px;
}

/* Desktop styles for Blog */
@media (min-width: 1200px) {
    .our-blog {
        padding: 50px 0 35px;
    }
}

.our-blog .section-row {
    margin-bottom: 30px;
}

/* Blog section title alignment - left aligned */
.our-blog .section-title {
    text-align: left;
    margin-bottom: 0;
}

.our-blog .section-title h3 {
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6em;
    text-transform: uppercase;
    color: #333;
    padding-left: 34px;
    margin-bottom: 10px;
}

.our-blog .section-title h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url('../img/icon-sub-heading.svg') no-repeat center;
    background-size: contain;
}

.our-blog .section-title h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2em;
    color: #333;
    margin: 0;
}

.our-blog .section-title h2 span {
    color: #FF0000;
}

.our-blog .section-title-content {
    margin-top: 20px;
}

.our-blog .section-title-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.post-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.post-featured-image {
    margin-bottom: 20px;
}

.post-featured-image a {
    cursor: pointer;
    display: block;
    border-radius: 40px;
    overflow: hidden;
}

.post-featured-image figure {
    display: block;
    margin: 0;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
    display: block;
}

.post-item:hover .post-featured-image img {
    transform: scale(1.1);
}

.post-item-content {
    margin-bottom: 20px;
}

.post-item-content h3 {
    font-size: 20px;
    line-height: 1.4em;
    margin: 0;
}

.post-item-content h3 a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
}

.post-item-content h3 a:hover {
    color: #FF0000;
}

/* Blog responsive */
@media (max-width: 991px) {
    .our-blog {
        padding: 30px 0 15px;
    }
    
    .our-blog .section-row {
        margin-bottom: 60px;
    }
    
    .our-blog .section-title h2 {
        font-size: 36px;
    }
    
    .our-blog .section-title-content {
        margin-top: 15px;
    }
    
    .post-featured-image,
    .post-item-content {
        margin-bottom: 10px;
    }
    
    .post-featured-image a {
        border-radius: 26px;
    }
}

@media (max-width: 767px) {
    .our-blog {
        padding: 30px 0 15px;
    }
    
    .our-blog .section-row {
        margin-bottom: 50px;
    }
    
    .our-blog .section-title h2 {
        font-size: 26px;
    }
    
    .our-blog .section-title-content {
        margin-top: 30px;
    }
    
    .post-item-content h3 {
        font-size: 18px;
    }
}

/* Advantages Section Styles */
.advantages.our-success-story {
    padding: 50px 0;
}

/* Desktop styles for Advantages */
@media (min-width: 1200px) {
    .advantages.our-success-story {
        padding: 50px 0;
    }
}

.success-story-images {
    position: relative;
    padding: 0 0 105px 110px;
    margin-right: 30px;
}

.success-story-img-1 figure,
.success-story-img-2 figure {
    display: block;
}

.success-story-img-1 img,
.success-story-img-2 img {
    width: 100%;
    object-fit: cover;
}

.success-story-img-1 figure,
.success-story-img-1 img {
    border-radius: 40px;
}

.success-story-img-1 img {
    aspect-ratio: 1 / 0.913;
}

.success-story-img-2 img {
    aspect-ratio: 1 / 1.311;
}

.success-story-img-2 {
    max-width: 296px;
    position: absolute;
    bottom: 0;
    left: 0;
    border: 8px solid white;
    border-radius: 40px;
    overflow: hidden;
    z-index: 1;
}

.contact-now-box {
    width: 305px;
    position: absolute;
    right: 80px;
    bottom: 50px;
    display: flex;
    align-items: center;
    background: #212121;
    border: 4px solid white;
    border-radius: 20px;
    padding: 15px;
    overflow: hidden;
    animation: movecontactbox 3s infinite linear alternate;
    z-index: 2;
}

@keyframes movecontactbox {
    50% {
        right: 30px;
    }
}

.contact-now-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: #FF0000;
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.contact-now-box:hover::before {
    right: auto;
    left: 0;
    width: 100%;
}

.contact-now-box .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.contact-now-box .icon-box::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: #212121;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.contact-now-box:hover .icon-box::before {
    transform: scale(1);
}

.contact-now-box .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.contact-now-box:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.contact-now-box-content {
    position: relative;
    width: calc(100% - 80px);
    z-index: 1;
}

.contact-now-box-content h3 {
    color: white;
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.contact-now-box-content p {
    color: white;
    margin: 0;
}

.contact-now-box-content p a {
    color: inherit;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.contact-now-box-content p a:hover {
    color: #212121;
}

.advantages .section-title {
    text-align: left;
    margin-bottom: 40px;
}

.advantages .section-title h3 {
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6em;
    text-transform: uppercase;
    color: #333;
    padding-left: 34px;
    margin-bottom: 10px;
}

.advantages .section-title h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url('../img/icon-sub-heading.svg') no-repeat center;
    background-size: contain;
}

.advantages .section-title h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2em;
    color: #333;
    margin-bottom: 20px;
}

.advantages .section-title h2 span {
    color: #FF0000;
}

.advantages .section-title p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.success-story-body {
    margin-bottom: 40px;
}

.success-story-body ul {
    display: flex;
    gap: 20px 30px;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.success-story-body ul li {
    width: calc(50% - 15px);
    color: #333;
    line-height: 1.4em;
    padding-left: 30px;
    background-image: url('../img/icon-sub-heading.svg');
    background-repeat: no-repeat;
    background-position: left top 1px;
    background-size: 22px auto;
}

.success-story-btn .btn-default.btn-highlighted {
    background: #FF0000;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #FF0000;
}

.success-story-btn .btn-default.btn-highlighted:hover {
    background-color: #CC0000;
    border-color: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    text-decoration: none;
    color: white;
}

.success-story-btn .btn-default.btn-highlighted .btn-arrow {
    width: 16px;
    height: 16px;
}

/* Advantages responsive */
@media (max-width: 991px) {
    .advantages.our-success-story {
        padding: 30px 0;
    }
    
    .success-story-images {
        max-width: 70%;
        margin: 0 auto;
        margin-bottom: 30px;
        padding: 0 0 80px 80px;
    }
    
    .advantages .section-title h2 {
        font-size: 36px;
    }
    
    .contact-now-box {
        width: 280px;
        right: 60px;
        bottom: 40px;
    }
    
    .success-story-body ul li {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .advantages.our-success-story {
        padding: 30px 0 15px;
    }
    
    .success-story-images {
        max-width: 90%;
        padding: 0 0 60px 60px;
        margin-bottom: 40px;
    }
    
    .advantages .section-title h2 {
        font-size: 26px;
    }
    
    .contact-now-box {
        width: 250px;
        right: 40px;
        bottom: 30px;
        padding: 12px;
    }
    
    .contact-now-box .icon-box {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .contact-now-box .icon-box img {
        max-width: 25px;
    }
    
    .contact-now-box-content h3 {
        font-size: 18px;
    }
    
    .success-story-img-2 {
        max-width: 250px;
    }
}

/* Our FAQs Section Styles */
.our-faqs {
    padding: 50px 0;
}

.our-faqs .container-fluid {
    padding: 0;
}

.our-faqs-content {
    position: relative;
    background: white;
    border: 1px solid #E5E5E5;
    border-radius: 40px;
    box-shadow: 0px 0px 30px 0px rgba(6, 46, 57, 0.05);
    padding: 60px;
    margin: 80px 0;
    margin-right: -80px;
    z-index: 1;
}

.faq-content-box {
    padding-left: 50px;
}

.our-faqs .section-title {
    text-align: left;
    margin-bottom: 40px;
}

.our-faqs .section-title h3 {
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6em;
    text-transform: uppercase;
    color: #333;
    padding-left: 34px;
    margin-bottom: 10px;
}

.our-faqs .section-title h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url('../img/icon-sub-heading.svg') no-repeat center;
    background-size: contain;
}

.our-faqs .section-title h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2em;
    color: #333;
    margin: 0;
}

.our-faqs .section-title h2 span {
    color: #FF0000;
}

.faq-accordion .accordion-item {
    border-bottom: 1px solid #E5E5E5;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-top: none;
    border-left: none;
    border-right: none;
    background: transparent;
}

.faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-accordion .accordion-header .accordion-button {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4em;
    color: #FF0000;
    padding: 0;
    padding-right: 25px;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button.collapsed {
    color: #212121;
}

.faq-accordion .accordion-button:not(.collapsed) {
    padding-bottom: 10px;
}

.faq-accordion .accordion-item .accordion-button::after, 
.faq-accordion .accordion-item .accordion-button.collapsed::after {
    content: '\f107';
    font-family: 'FontAwesome';
    position: absolute;
    right: 0;
    top: 0;    
    font-size: 20px;
    color: #212121;
    transition: all 0.3s ease-in-out;
    background: none;
    border: none;
    width: auto;
    height: auto;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    color: #FF0000;
}

.faq-accordion .accordion-item .accordion-body {
    padding: 0;
    padding-right: 25px;
    padding-top: 10px;
}

.faq-accordion .accordion-item:last-child .accordion-body {
    padding-bottom: 0;
}

.faq-accordion .accordion-item .accordion-body p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.faq-accordion .accordion-item .accordion-body p:last-child {
    margin-bottom: 0;
}

.faqs-image {
    position: relative;
    height: 100%;
}

.faq-image {
    height: 100%;
}

.faq-image figure {
    display: block;
    height: 100%;
    border-radius: 40px 0 0 40px;
}

.faq-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 0.9;
    object-fit: cover;
    border-radius: 40px 0 0 40px;
}



/* FAQs responsive */
@media (max-width: 991px) {
    .our-faqs {
        padding: 25px 0;
    }
    
    .our-faqs .container-fluid {
        padding: 0 15px;
    }
    
    .faq-content-box {
        padding: 0;
        margin-bottom: 30px;
    }
    
    .our-faqs-content {
        margin: 0;
        padding: 30px;
        border-radius: 26px;
        margin-right: 0;
    }
    
    .our-faqs .section-title h2 {
        font-size: 36px;
    }
    
    .faq-accordion .accordion-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .our-faqs-content {
        padding: 20px;
        margin: 20px 0;
        margin-right: 0;
    }
    
    .our-faqs .container-fluid {
        padding: 0 15px;
    }
    
    .faq-content-box {
        padding-left: 0;
    }
    
    .our-faqs .section-title h2 {
        font-size: 26px;
    }
    
    .faq-accordion .accordion-item {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    
    .faq-accordion .accordion-header .accordion-button {
        font-size: 18px;
    }
    
    .faq-image figure,
    .faq-image img {
        border-radius: 26px 0 0 26px;
    }
}

/* White Header Styles */
.white-header {
    background: white;
    border-bottom: 1px solid #E5E5E5;
    position: relative;
    top: 0;
}

/* Dark Section Styles */
.dark-section {
    background-color: #212121;
}

.dark-section .section-title h3 {
    color: #ccc;
}

.dark-section .section-title h2,
.dark-section .section-title h1,
.dark-section .section-title p {
    color: white;
}

.our-work-process .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.our-work-process .section-title h3 {
    position: relative;
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ccc;
    margin-bottom: 15px;
    padding-left: 34px;
}

.our-work-process .section-title h3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url('../img/icon-sub-heading.svg') no-repeat center;
    background-size: contain;
}

.our-work-process .section-title h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin: 0;
}

.our-work-process .section-title h2 span {
    color: #FF0000;
}

/* Our Work Process Section */
.our-work-process {
    padding: 50px 0;
    background-image: url('../img/work-process-bg.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.work-process-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}



.work-process-item {
    position: relative;
    text-align: center;
    padding-top: 10px;
    width: calc(25% - 22.5px);
}

/* Zigzag layout - even items (2, 4) go down */
.work-process-item:nth-child(even) {
    margin-top: 90px;
}



.work-process-item:after {
    position: absolute;
    content: '';
    top: -30px;
    right: -65px;
    width: 100px;
    height: 50px;
    background: url('../img/work-process-arrow.svg') no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 0;
}

.work-process-item:last-child:after,
.work-process-item:nth-child(4n + 4):after {
    display: none;
}

/* Arrows for odd items (1, 3) - point down */
.work-process-item:nth-child(odd):after {
    top: 132px;
    transform: rotateX(180deg);
}



.work-process-item .icon-box {
    position: relative;
    width: 162px;
    height: 162px;
    background: #FF0000;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.work-process-item .icon-box:before {
    content: '';
    position: absolute;
    height: calc(100% + 20px);
    width: calc(100% + 20px);
    border: 2px dashed #ccc;
    border-radius: 50%;
    top: -10px;
    left: -10px;
}

.work-process-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 60px;
    z-index: 1;
}

.work-process-item .icon-box .work-process-number {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.work-process-item .icon-box .work-process-number h3 {
    color: #FF0000;
    font-size: 24px;
    margin: 0;
    font-weight: 700;
}

.work-process-content h3 {
    color: white;
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 15px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

.work-process-content p {
    color: #ccc;
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

/* Moving City Section */
.moving-city {
    padding: 50px 0;
    background: white;
}

.moving-city .section-title {
    text-align: left;
    margin-bottom: 60px;
}

.moving-city .section-title h3 {
    position: relative;
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 15px;
    padding-left: 34px;
}

.moving-city .section-title h3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url('../img/icon-sub-heading.svg') no-repeat center;
    background-size: contain;
}

.moving-city .section-title h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
    margin: 0;
}

.moving-city .section-title h2 span {
    color: #FF0000;
}

.city-card {
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.city-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.city-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.city-card:hover .city-image img {
    transform: scale(1.1);
}

.city-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    white-space: nowrap;
}

.city-content h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0;
}

/* Top bar adjustments for white header pages */
/* Old white-header-page styles removed - using new clean styles at the end of file */





.white-header {
    font-family: 'DM Sans', sans-serif;
}

.white-header .main-menu .nav-menu-wrapper {
    margin: 0 16px;
}

.white-header .main-menu ul li a {
    color: #333 !important;
}

.white-header .main-menu ul li a:hover {
    color: #FF0000 !important;
}

.white-header .main-menu ul ul li a {
    color: #333 !important;
}

.white-header .main-menu ul ul li a:hover {
    color: #FF0000 !important;
}

.white-header .btn-default.btn-highlighted {
    font-family: 'DM Sans', sans-serif;
    background-color: #FF0000;
    border-color: #FF0000;
    color: white;
}

.white-header .btn-default.btn-highlighted:hover {
    background-color: #CC0000;
    border-color: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}



/* Breadcrumbs Styles - Clean and Consistent */
.breadcrumbs-section {
    padding: 10px 0;
    margin-top: 144px;
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.breadcrumbs {
    margin-bottom: 0;
    padding: 0;
    background: transparent;
}

.breadcrumb-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb-item {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: #666666;
    text-decoration: none;
    padding: 4px 0;
    border-radius: 3px;
}

.breadcrumb-item a:hover {
    color: #FF0000;
    text-decoration: none;
}

.breadcrumb-item.current,
.breadcrumb-item.active {
    color: #333333;
    font-weight: 500;
}

/* Bootstrap breadcrumb support */
.breadcrumb {
    margin-bottom: 0;
    padding: 0;
    background: transparent;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #CCCCCC;
    margin: 0 10px;
    font-weight: 300;
    font-size: 13px;
}

/* Home icon for first breadcrumb item */


/* Hero Section 2 Styles */
.hero-section-2 {
    padding: 40px 0 80px 0;
    background: white;
}

.local-moving-content {
    padding-right: 40px;
}

.local-moving-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #333;
    font-family: 'DM Sans', sans-serif;
}

.local-moving-title .title-line-1 {
    white-space: nowrap;
}

.local-moving-title .title-line-2 {
    white-space: nowrap;
}

.local-moving-title .text-red {
    color: #FF0000;
}

.local-moving-text {
    font-size: 14px;
    line-height: 26px;
    color: #565969;
    margin-bottom: 2.5rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
}

.local-moving-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-quick-call {
    background: #00C851;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #00C851;
}

.btn-quick-call:hover {
    background-color: #00A041;
    border-color: #00A041;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 200, 81, 0.3);
    text-decoration: none;
    color: white;
}

.btn-quick-call .btn-arrow {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.local-moving-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.local-moving-image img {
    width: 501px;
    height: 463px;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Description Styles */
.our-services .section-title {
    margin-bottom: 30px;
}

.services-description {
    text-align: center;
    margin: 0 0 80px 0;
    width: 100%;
}

.services-description h3 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.2;
}

.services-description p {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
}

.services-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.services-cta span {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #333;
}

.services-cta .contact-link {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #FF0000;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.services-cta .contact-link:hover {
    color: #cc0000;
    text-decoration: underline;
}

/* Services Description Responsive */
@media (max-width: 991px) {
    .our-services .section-title {
        margin-bottom: 7px;
    }
    
    .services-description {
        margin: 0 0 60px 0;
    }
    
    .services-description h3 {
        font-size: 36px;
    }
    
    .services-description p {
        text-align: center;
    }
    
    .services-cta {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .our-services .section-title {
        margin-bottom: 5px;
    }
    
    .services-description {
        margin: 0 0 40px 0;
    }
    
    .services-description h3 {
        font-size: 32px;
        margin-bottom: 7px;
    }
    
    .services-description p {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .services-cta span,
    .services-cta .contact-link {
        font-size: 14px;
    }
}

/* Service Info Styles */
.service-info {
    padding: 100px 0;
    background-color: #fff;
}

.service-info-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.service-info-content {
    padding-left: 60px;
}

.service-info-content p {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #565969;
    margin-bottom: 20px;
}

.service-info-content p:last-child {
    margin-bottom: 0;
}

.service-info-btn {
    padding-top: 30px;
}

.service-info-title {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}


/* Homepage Hero Section - h1 size */
.home .hero-section .hero-content h1 {
    font-size: 3.8rem;
}

/* Homepage - all section-main-title size */
.home .section-main-title {
    font-size: 2.9rem;
}

/* Service Item Hover - white service-title */
.service-item:hover .service-title {
    color: white;
}

/* Who We Are Section - specific item-title styling */
.who-we-are .item-title {
    font-size: 1.25rem;
    font-weight: 600;
}

/* Section-specific title sizes - 2.9rem */
.who-we-are-content .section-title,
.reviews-section .section-title,
.prices-section .section-title,
.what-we-do .section-title,
.destination-section .section-title,
.our-blog .section-title,
.advantages.our-success-story .section-title,
.our-faqs .section-title {
    font-size: 2.9rem;
}

/* Reviews Section - unique class with left alignment and specific styling */
.reviews-title-container .reviews-section-title {
    text-align: left !important;
    font-size: 2.9rem !important;
}

/* Override section-title-center for reviews */
.reviews-section .reviews-title-container .reviews-section-title {
    text-align: left !important;
}

/* Homepage Reviews Section - additional override */
.home .reviews-section .section-title {
    text-align: left !important;
    font-size: 2.9rem !important;
}

/* Service Info Responsive */
@media (max-width: 991px) {
    .service-info {
        padding: 60px 0;
    }
    
    .service-info-content {
        padding-left: 0;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .service-info {
        padding: 40px 0;
    }
    
    .service-info-content p {
        font-size: 14px;
        line-height: 24px;
    }
}

/* Our Team Styles */
.our-team {
    padding: 50px 0;
    background-color: #1a1a1a;
    background-image: url('../img/team-bg.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.team-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.team-image {
    position: relative;
    border-radius: 40px;
    margin-bottom: 20px;
    overflow: hidden;
}

.team-image a {
    display: block;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    aspect-ratio: 1 / 1.15;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image img {
    transform: scale(1.1);
}

.team-social-icon {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.team-item:hover .team-social-icon {
    bottom: 40px;
    opacity: 1;
    visibility: visible;
}

.team-social-icon ul {
    background: #FF0000;
    border-radius: 12px;
    list-style: none;
    margin: 0;
    padding: 15px 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.team-social-icon ul li a {
    color: white;
    transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover {
    color: #333;
}

.team-social-icon ul li a i {
    color: inherit;
    line-height: normal;
    font-size: 20px;
}

.team-content {
    text-align: center;
}

.team-content h3 {
    color: #ffffff;
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.team-content h3 a {
    color: inherit;
}

.team-content p {
    color: #FF0000;
    text-transform: capitalize;
    margin: 0;
}

/* Team Section Title Styles for Dark Background */
.our-team .section-title h3 {
    color: #FF0000;
}

.our-team .section-title h2 {
    color: #ffffff;
}

.our-team .section-title p {
    color: #cccccc;
}

/* Responsive Styles for Team */
@media (max-width: 767px) {
    .our-team {
        padding: 25px 0;
    }
    
    .team-image {
        border-radius: 26px;
        margin-bottom: 15px;
    }
    
    .team-image img {
        aspect-ratio: 1 / 1.01;
    }
    
    .team-social-icon {
        left: 30px;
        right: 30px;
    }
    
    .team-item:hover .team-social-icon {
        bottom: 30px;
    }
}

/* Page Blog Styles */
.page-blog {
    padding: 50px 0;
}

.page-pagination {
    margin-top: 30px;
    text-align: center;
}

.page-pagination ul {
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
}

.page-pagination ul li a,
.page-pagination ul li span {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: #333;
    color: #FF0000;
    border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
    line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
    background: #FF0000;
    color: white;
}

.pagination-arrow {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease-in-out;
}

.prev-arrow {
    transform: rotate(180deg);
}

.page-pagination ul li a:hover .pagination-arrow {
    filter: brightness(0) invert(1);
}

/* Responsive Styles for Page Blog */
@media (max-width: 767px) {
    .page-blog {
        padding: 25px 0;
    }
    
    .page-pagination {
        margin-top: 15px;
    }
    
    .page-pagination ul li a,
    .page-pagination ul li span {
        width: 35px;
        height: 35px;
        margin: 0 3px;
        font-size: 14px;
    }
    
    .pagination-arrow {
        width: 14px;
        height: 14px;
    }
}

/* Page Title Styles */
.page-title-section {
    padding: 40px 0;
    background: white;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.2em;
    font-family: 'DM Sans', sans-serif;
}

@media (max-width: 991px) {
    .page-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .page-title-section {
        padding: 30px 0;
    }
    
    .page-title {
        font-size: 28px;
    }
}

/* Page Single Post Styles */
.page-single-post {
    padding: 50px 0;
}

.post-image {
    position: relative;
    margin-bottom: 30px;
}

.post-image figure {
    display: block;
    border-radius: 40px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    aspect-ratio: 1 / 0.50;
    object-fit: cover;
    border-radius: 40px;
}

.post-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.post-entry {
    border-bottom: 1px solid #E5E5E5;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after {
    content: '';
    display: block;
    clear: both;
}

.post-entry a {
    color: #FF0000;
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2em;
    margin: 0 0 0.4em;
    color: #333;
}

.post-entry h2 {
    font-size: 32px;
}

.post-entry p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6em;
    color: #666;
}

.post-entry p:last-child {
    margin-bottom: 0;
}

.post-entry ul {
    padding: 0;
    margin: 20px 0;
    padding-left: 20px;
}

.post-entry ul li {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    color: #666;
    margin-bottom: 15px;
}

.post-entry ul li:last-child {
    margin-bottom: 0;
}

.post-entry blockquote {
    background: #333;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 4px solid #FF0000;
}

.post-entry blockquote p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5em;
    color: white;
    margin-bottom: 0;
    font-style: italic;
}

/* Responsive Styles for Single Post */
@media (max-width: 767px) {
    .page-single-post {
        padding: 25px 0;
    }
    
    .post-image {
        margin-bottom: 20px;
    }
    
    .post-image figure,
    .post-image img {
        border-radius: 20px;
    }
    
    .post-entry h2 {
        font-size: 24px;
    }
    
    .post-entry blockquote {
        padding: 20px;
        border-radius: 15px;
    }
}

/* Page Contact Us Styles */
.page-contact-us {
    padding: 50px 0;
}

.contact-info-item {
    position: relative;
    background: #333;
    display: flex;
    align-items: center;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
    overflow: hidden;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #FF0000;
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.contact-info-item:hover::before {
    top: auto;
    height: 100%;
}

.contact-info-item .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    background: #F5F5F5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    z-index: 1;
}

.contact-info-item .icon-box img {
    width: 100%;
    max-width: 30px;
}

.contact-info-content {
    position: relative;
    width: calc(100% - 80px);
    z-index: 1;
}

.contact-info-content p {
    color: #F5F5F5;
    text-transform: capitalize;
    margin-bottom: 5px;
    font-size: 14px;
}

.contact-info-content h3 {
    color: white;
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}

.contact-info-content h3 a {
    color: inherit;
    text-decoration: none;
}

/* Contact page specific - override link colors for contact info items */
.contact-info-item .contact-info-content .item-title a {
    color: white !important;
    text-decoration: none;
}

.contact-info-item .contact-info-content .item-title a:hover,
.contact-info-item .contact-info-content .item-title a:focus,
.contact-info-item .contact-info-content .item-title a:active,
.contact-info-item .contact-info-content .item-title a:visited {
    color: white !important;
    text-decoration: none;
}

/* Contact info unique classes - specific styling for each contact type */
.contact-phone-title,
.contact-email-title,
.contact-address-title {
    color: white !important;
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}

.contact-phone-title a,
.contact-email-title a,
.contact-address-title a {
    color: white !important;
    text-decoration: none;
}

.contact-phone-title a:hover,
.contact-phone-title a:focus,
.contact-phone-title a:active,
.contact-phone-title a:visited,
.contact-email-title a:hover,
.contact-email-title a:focus,
.contact-email-title a:active,
.contact-email-title a:visited {
    color: white !important;
    text-decoration: none;
}

.contact-us-form {
    margin-left: 30px;
}

.contact-form .form-group {
    position: relative;
}

.contact-form .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: #666;
    background: white;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    padding: 17px 60px 17px 20px;
    box-shadow: none;
    outline: none;
    width: 100%;
}

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

.contact-form .form-control:focus {
    border-color: #FF0000;
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
}

.contact-form .form-group i,
.contact-form .form-group img {
    display: none !important;
}

.contact-form-btn .btn-default {
    background: #FF0000;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.contact-form-btn .btn-default:hover {
    background: #CC0000;
}

/* Contact Form 7 Integration */
.contact-form-btn .wpcf7-submit.btn-default,
.contact-form-btn input[type="submit"].btn-default {
    background: #FF0000;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
}

.contact-form-btn .wpcf7-submit.btn-default:hover,
.contact-form-btn input[type="submit"].btn-default:hover {
    background: #CC0000;
}

/* Contact Form 7 Field Styling */
.contact-form .wpcf7-form-control-wrap {
    position: relative;
    display: block;
    width: 100%;
}

.contact-form .form-group {
    position: relative;
    margin-bottom: 1.5rem !important;
}

.contact-form .form-group .form-control {
    padding-right: 45px;
    height: 50px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    background: #fff;
}

.contact-form .form-group .form-control:focus {
    border-color: #FF0000;
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
}

.contact-form .form-group textarea.form-control {
    height: auto;
    min-height: 120px;
    resize: vertical;
    padding-top: 12px;
}

/* Icons positioning for Contact Form 7 */
.contact-form .form-group i,
.contact-form .form-group img {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 18px;
    pointer-events: none;
    z-index: 2;
}

.contact-form .form-group img {
    width: 18px;
    height: 18px;
}

/* Special spacing for message field */
.contact-form .form-group.col-md-12.mb-5 {
    margin-bottom: 2rem !important;
}

/* Remove default CF7 styling */
.contact-form .wpcf7-form p {
    margin: 0;
}

.contact-form .wpcf7 form.invalid .wpcf7-response-output,
.contact-form .wpcf7 form.unaccepted .wpcf7-response-output,
.contact-form .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #FF0000;
}

.contact-form .wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
}

/* Google Map Styles */
.google-map .container-fluid {
    padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe {
    height: 400px;
    width: 100%;
    border: none;
    border-radius: 0;
}

/* Responsive Styles for Contact Page */
@media (max-width: 991px) {
    .contact-us-form {
        margin-left: 0;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .page-contact-us {
        padding: 25px 0;
    }
    
    .contact-info-item {
        padding: 15px;
    }
    
    .contact-info-item .icon-box {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .contact-info-content {
        width: calc(100% - 65px);
    }
    
    .contact-info-content h3 {
        font-size: 16px;
    }
    
    .google-map-iframe,
    .google-map-iframe iframe {
        height: 300px;
    }
}

/* Mega Menu Styles */
.main-menu {
    position: relative;
}

.navbar-nav .mega-menu {
    position: static;
}

.main-menu .mega-menu > .nav-link::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.main-menu .mega-menu:hover > .nav-link::after {
    transform: rotate(180deg);
}

.submenu > .nav-link::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.submenu:hover > .nav-link::after {
    transform: rotate(180deg);
}

.main-menu .mega-menu .mega-menu-content {
    position: fixed;
    top: 140px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    display: none;
    z-index: 9999;
    width: 1200px;
    max-width: calc(100vw - 40px);
    opacity: 0;
    visibility: hidden;
}

/* Створюємо невидимий "міст" між меню та випадаючим меню */
.main-menu .mega-menu .mega-menu-content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 30%;
    right: 30%;
    height: 50px;
    background: transparent;
    z-index: -1;
}

/* Спеціальний міст для першого мега-меню (Residential) */
.main-menu .mega-menu:first-of-type .mega-menu-content::before {
    left: 20%;
    right: 20%;
}

.main-menu .mega-menu:hover .mega-menu-content {
    display: flex;
    gap: 40px;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.main-menu .mega-menu .mega-menu-column {
    flex: 1;
    min-width: 150px;
}

.main-menu .mega-menu .mega-menu-column h4 {
    color: #FF0000 !important;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #FF0000;
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-menu .mega-menu .mega-menu-column h4 a {
    color: #FF0000 !important;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-weight: 600;
    font-size: 15px;
}

.main-menu .mega-menu .mega-menu-column h4 a:hover {
    opacity: 0.8;
    color: #FF0000 !important;
}

/* Додатковий стиль для забезпечення червоного кольору заголовків */
.main-menu .mega-menu-content h4 a {
    color: #FF0000 !important;
}

.main-menu .mega-menu-content h4 {
    color: #FF0000 !important;
}

/* New mega-menu classes for clean HTML structure */
.main-menu .mega-menu .mega-menu-title {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 15px;
}

.main-menu .mega-menu .mega-menu-title-link {
    color: #FF0000 !important;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-weight: 600;
    font-size: 15px;
}

.main-menu .mega-menu .mega-menu-title-link:hover {
    opacity: 0.8;
    color: #FF0000 !important;
}

.main-menu .mega-menu .mega-menu-link {
    color: #333 !important;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    display: block;
}

.main-menu .mega-menu .mega-menu-link:hover {
    color: #FF0000;
}

/* Додатковий стиль для білих header */
.white-header .main-menu .mega-menu .mega-menu-column h4 {
    color: #FF0000 !important;
}

.white-header .main-menu .mega-menu .mega-menu-column h4 a {
    color: #FF0000 !important;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-weight: 600;
    font-size: 15px;
}

.white-header .main-menu .mega-menu .mega-menu-column h4 a:hover {
    opacity: 0.8;
    color: #FF0000 !important;
}

/* White header styles for new mega-menu classes */
.white-header .main-menu .mega-menu .mega-menu-title {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 15px;
}

.white-header .main-menu .mega-menu .mega-menu-title-link {
    color: #FF0000 !important;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-weight: 600;
    font-size: 15px;
}

.white-header .main-menu .mega-menu .mega-menu-title-link:hover {
    opacity: 0.8;
    color: #FF0000 !important;
}

.white-header .main-menu .mega-menu .mega-menu-link {
    color: #333 !important;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    display: block;
}

.white-header .main-menu .mega-menu .mega-menu-link:hover {
    color: #FF0000;
}

.main-menu .mega-menu .mega-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-menu .mega-menu .mega-menu-column ul li {
    margin-bottom: 8px;
    position: relative;
}

.main-menu .mega-menu .mega-menu-column ul li:last-child {
    margin-bottom: 0;
}

.main-menu .mega-menu .mega-menu-column ul li a {
    color: #333 !important;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.4;
}

.main-menu .mega-menu .mega-menu-column ul li a:hover {
    color: #FF0000;
}

/* Override any conflicting styles */
.main-menu .mega-menu .mega-menu-content * {
    box-sizing: border-box;
}

.main-menu .mega-menu .mega-menu-content ul {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
}

.main-menu .mega-menu .mega-menu-content ul li {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    float: none !important;
    width: auto !important;
    height: auto !important;
}

.main-menu .mega-menu .mega-menu-content ul li a {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    float: none !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
}

.main-menu .mega-menu .mega-menu-content ul li a:hover {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
}

/* Locations mega menu - horizontal layout like headers */
.main-menu .mega-menu .locations-column {
    width: 100% !important;
    text-align: center !important;
}

.main-menu .mega-menu .locations-list {
    display: flex !important;
    justify-content: center !important;
    gap: 40px !important;
    flex-wrap: nowrap !important;
}

.main-menu .mega-menu .locations-list a {
    color: #FF0000 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    font-family: 'DM Sans', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    text-decoration: none !important;
    padding: 0 15px !important;
    margin: 0 !important;
    border-bottom: none !important;
    padding-bottom: 8px !important;
    white-space: nowrap !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.main-menu .mega-menu .locations-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: -10px;
    right: -10px;
    height: 2px;
    background: #FF0000;
}

.main-menu .mega-menu .locations-list a:hover {
    color: #CC0000 !important;
}

.main-menu .mega-menu .locations-list a:hover::after {
    background: #CC0000 !important;
}

.main-menu .mega-menu:last-of-type .mega-menu-content {
    width: auto !important;
    max-width: 500px !important;
    min-width: 400px !important;
    padding: 20px 30px !important;
}



/* Responsive Mega Menu */
@media (max-width: 1199px) {
    .main-menu .mega-menu .mega-menu-content {
        width: 1000px;
        max-width: calc(100vw - 40px);
        gap: 30px;
        padding: 25px;
    }
}

@media (max-width: 1024px) {
    .main-menu .mega-menu .mega-menu-content {
        width: 900px;
        max-width: calc(100vw - 40px);
        gap: 25px;
        padding: 20px;
    }
}

@media (max-width: 991px) {
    .main-menu .mega-menu .mega-menu-content {
        position: static;
        display: none;
        width: auto;
        max-width: none;
        left: auto;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 15px 0;
        background: transparent;
        flex-direction: column;
    }
    
    .main-menu .mega-menu.active .mega-menu-content {
        display: block;
    }
    
    .main-menu .mega-menu .mega-menu-column {
        margin-bottom: 20px;
    }
    
    .main-menu .mega-menu .mega-menu-column:last-child {
        margin-bottom: 0;
    }
    
    .main-menu .mega-menu .mega-menu-column h4 {
        font-size: 14px;
        margin-bottom: 10px;
        padding-bottom: 5px;
    }
    
    .main-menu .mega-menu .mega-menu-column ul li a {
        font-size: 13px;
        padding: 3px 0;
    }
    
    /* Locations mobile - vertical layout */
    .main-menu .mega-menu .locations-list {
        display: block !important;
        text-align: left !important;
    }
    
    .main-menu .mega-menu .locations-list a {
        display: block !important;
        margin-bottom: 8px !important;
        border-bottom: none !important;
        padding-bottom: 3px !important;
        font-weight: 400 !important;
        color: #666 !important;
    }
    
    .main-menu .mega-menu .locations-list a:hover {
        color: #FF0000 !important;
        border-bottom: none !important;
    }
}

/* Hero Buttons Styles */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.hero-buttons .btn-default {
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-buttons .btn-default.btn-highlighted {
    background: #FF0000;
    color: white;
    border: 2px solid #FF0000;
}

.hero-buttons .btn-default.btn-highlighted:hover {
    background: #CC0000;
    border-color: #CC0000;
}

.hero-buttons .btn-default:not(.btn-highlighted) {
    background: transparent;
    color: #333;
    border: 2px solid #333;
}

.hero-buttons .btn-default:not(.btn-highlighted):hover {
    background: #333;
    color: white;
}

@media (max-width: 767px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn-default {
        text-align: center;
        justify-content: center;
    }
}

/* Contact Block Styles */
.contact-block {
    padding: 80px 0;
    background: white;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.contact-info {
    padding-left: 60px;
}

.contact-block .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.contact-block .section-subtitle {
    font-size: 14px;
    color: #FF0000;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-block .section-title-text {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
}

.contact-block .section-title-text span {
    color: #FF0000;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-address,
.contact-phone,
.contact-email {
    margin-bottom: 15px;
}

.contact-address p,
.contact-phone p,
.contact-email p {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-address strong {
    color: #333;
    font-weight: 600;
}

.address-link a,
.contact-phone a,
.contact-email a {
    color: #666;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.address-link a:hover,
.contact-phone a:hover,
.contact-email a:hover {
    color: #FF0000;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border: 0;
    border-radius: 15px;
}

/* Contact Block Responsive */
@media (max-width: 991px) {
    .contact-block {
        padding: 60px 0;
    }

    .contact-info {
        padding-left: 0;
        margin-top: 40px;
        text-align: center;
    }

    .contact-block .section-title {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .contact-block {
        padding: 40px 0;
    }

    .contact-block .section-title-text {
        font-size: 24px;
    }

    .map-container iframe {
        height: 200px;
    }
}

/* Moving City Section */
.moving-city {
    padding: 50px 0;
    background: white;
}

.moving-city .section-title {
    text-align: left;
    margin-bottom: 60px;
}

.moving-city .section-subtitle {
    position: relative;
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 15px;
    padding-left: 34px;
}

.moving-city .section-subtitle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url('../img/icon-sub-heading.svg') no-repeat center;
    background-size: contain;
}

.moving-city .section-title-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
    margin: 0;
}

.moving-city .section-title-text span {
    color: #FF0000;
}

.city-card {
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.city-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.city-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.city-card:hover .city-image img {
    transform: scale(1.1);
}

.city-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    white-space: nowrap;
}

.city-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0;
}

/* Moving City Responsive */
@media (max-width: 991px) {
    .moving-city {
        padding: 30px 0;
    }

    .moving-city .section-title {
        margin-bottom: 40px;
    }

    .moving-city .section-title-text {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .moving-city {
        padding: 40px 0;
    }

    .moving-city .section-title-text {
        font-size: 40px;
    }
}

/* Hero Section 2 Responsive */
@media (max-width: 991px) {
    .breadcrumbs-section {
        margin-top: 100px;
    }

    .hero-section-2 {
        padding: 30px 0 60px 0;
    }
    
    .local-moving-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .local-moving-title {
        font-size: 36px;
    }
    
    .local-moving-title .title-line-1,
    .local-moving-title .title-line-2 {
        white-space: normal;
    }
    
    .local-moving-buttons {
        justify-content: center;
    }
    
    .local-moving-image {
        justify-content: center;
    }
    
    .local-moving-image img {
        width: 100%;
        height: auto;
        max-width: 501px;
    }
}

@media (max-width: 767px) {
    .hero-section-2 {
        padding: 20px 0 40px 0;
    }
    
    .local-moving-title {
        font-size: 32px;
    }
    
    .local-moving-text {
        font-size: 15px;
        line-height: 24px;
    }
    
    .local-moving-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-default.btn-highlighted,
    .btn-quick-call {
        width: 100%;
        justify-content: center;
    }
    
    .local-moving-image img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 575px) {
    .local-moving-title {
        font-size: 28px;
    }
    
    .local-moving-text {
        font-size: 14px;
        line-height: 22px;
        text-align: justify;
    }
    
    .google-rating {
        justify-content: center;
        margin-bottom: 25px;
    }
    
    .breadcrumbs-section {
        padding: 15px 0;
        margin-top: 100px;
    }
    
    .breadcrumb-item {
        font-size: 13px;
    }
    
    .breadcrumb-item + .breadcrumb-item::before {
        margin: 0 8px;
        font-size: 12px;
    }
}

/* Footer Styles - Updated Mobile Layout */
.main-footer {
    background: url('../img/footer-bg.png'), #212121;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding: 100px 0 0;
}

.main-footer .container {
    max-width: 1140px;
    padding-left: 15px;
    padding-right: 15px;
}

.main-footer .row {
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
    display: flex;
    flex-wrap: wrap;
}

.main-footer .row > [class*="footer-col-"] {
    padding-left: 15px;
    padding-right: 15px;
}

.footer-col-25 {
    width: 30%;
    flex: 0 0 30%;
    max-width: 30%;
}

.footer-col-20 {
    width: 20%;
    flex: 0 0 20%;
    max-width: 20%;
}

.footer-col-20:nth-child(4) {
    width: 18%;
    flex: 0 0 18%;
    max-width: 18%;
}

.footer-col-15 {
    width: 12%;
    flex: 0 0 12%;
    max-width: 12%;
}

.about-footer {
    margin-top: 20px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    width: 107px;
    height: 61px;
    object-fit: contain;
}

.about-footer-content p {
    color: white;
    margin-bottom: 0;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
}

.footer-links h3 {
    font-size: 20px;
    color: white;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.footer-links p {
    color: white;
    margin-bottom: 10px;
}

.footer-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links ul li {
    color: white;
    text-transform: capitalize;
    line-height: 1.5em;
    margin-bottom: 12px;
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-links ul li a {
    display: inline-block;
    color: inherit;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
}

.footer-links ul li a:hover {
    color: #FF0000;
}

.footer-contact-item {
    display: flex;
    align-items: baseline;
    margin-bottom: 20px;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-item .icon-box {
    margin-right: 10px;
}

.footer-contact-item .icon-box img {
    width: 100%;
    max-width: 20px;
}

.footer-contact-content {
    width: calc(100% - 30px);
}

.footer-contact-content p {
    color: white;
    margin-bottom: 0;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
}

.footer-contact-content p a {
    color: inherit;
    transition: all 0.4s ease-in-out;
    text-decoration: none;
}

.footer-contact-content p a:hover {
    color: #FF0000;
}

.footer-newsletter-form .form-group .form-control {
    padding: 13px 20px;
    border: none;
    background: white;
    color: #333;
    border-radius: 8px;
    line-height: 1.5em;
    box-shadow: none;
    margin-bottom: 20px;
}

.footer-newsletter-form .form-group .form-control::placeholder {
    color: #333;
}

.footer-newsletter-form .btn-default.btn-highlighted {
    background: #FF0000;
    color: white;
    padding: 13px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    border: 2px solid #FF0000;
}

.footer-newsletter-form .btn-default.btn-highlighted:hover {
    background: transparent;
    color: #FF0000;
}

.footer-copyright {
    border-top: 1px solid #444;
    padding: 20px 0 40px;
    margin-top: 60px;
}

.footer-copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-privacy p {
    color: white;
    margin-bottom: 0;
}

.footer-privacy p a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.footer-privacy p a:hover {
    color: #FF0000;
}

.footer-regulation p {
    color: #ccc;
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-copyright-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-copyright-text {
    text-align: left;
}

.footer-copyright-text p {
    color: white;
    margin-bottom: 0;
}

.footer-social-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-social-links ul li {
    display: inline-block;
    margin-right: 20px;
}

.footer-social-links ul li:last-child {
    margin-right: 0;
}

.footer-social-links ul li a {
    width: 40px;
    height: 40px;
    color: #212121;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.footer-social-links ul li a:hover {
    color: white;
    background: #FF0000;
}

.footer-social-links ul li a i {
    font-size: 18px;
    color: inherit;
}

/* Footer responsive */
@media (max-width: 1199px) {
    .main-footer .container {
        max-width: 960px;
    }
}

@media (max-width: 991px) {
    .main-footer {
        padding: 50px 0 0;
        margin-bottom: 0px;
    }
    
    .main-footer .container {
        max-width: 720px;
    }
    
    .main-footer .row .footer-col-25 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 30px;
    }
    
    .main-footer .row .footer-col-20 {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
        margin-bottom: 30px;
    }
    
    .main-footer .row .footer-col-15 {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
        margin-bottom: 0;
    }
    
    .about-footer {
        margin: 0;
    }
    
    .footer-logo {
        margin-bottom: 20px;
    }
    
    .footer-copyright-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-copyright-left {
        order: 2;
        text-align: center;
    }

    .footer-copyright-text {
        text-align: center;
    }

    .footer-social-links {
        order: 1;
    }
    
    .footer-privacy {
        order: 1;
    }
    
    .footer-social-links {
        order: 3;
    }
}

@media (max-width: 767px) {
    .main-footer {
        padding: 40px 0 0;
    }
    
    .main-footer .container {
        max-width: 540px;
    }
    
    .main-footer .row .footer-col-25 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 25px;
    }
    
    .main-footer .row .footer-col-20 {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
        margin-bottom: 25px;
    }
    
    .main-footer .row .footer-col-15 {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
        margin-bottom: 0;
    }
    
    .footer-links {
        margin-bottom: 0;
    }
    
    .footer-links h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-contact-item {
        margin-bottom: 15px;
    }
    
    .footer-copyright {
        padding: 15px 0 30px;
        margin-top: 40px;
    }
    
    .footer-social-links ul li {
        margin-right: 15px;
    }
    
    .footer-social-links ul li a {
        width: 35px;
        height: 35px;
    }
    
    .footer-social-links ul li a i {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .main-footer .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .main-footer .row .footer-col-25,
    .main-footer .row .footer-col-20,
    .main-footer .row .footer-col-15 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px;
    }
    
    .main-footer .row .footer-col-15 {
        margin-bottom: 0;
    }
    
    .moving-city {
        padding: 30px 0;
    }
    
    .moving-city .section-title {
        margin-bottom: 40px;
    }
    
    .moving-city .section-title h2 {
        font-size: 32px;
    }
    
    .city-card {
        margin-bottom: 20px;
    }
    
    .city-image img {
        height: 200px;
    }
    
    .city-content h3 {
        font-size: 20px;
    }
}

/* Mobile styles for moving city section */
@media (max-width: 767px) {
    .moving-city {
        padding: 40px 0;
    }
    
    .moving-city .section-title h2 {
        font-size: 40px;
    }
    
    .city-image img {
        height: 220px;
    }
}

/* Header Styles - Clean and Simple */

/* Стилі перенесені в кінець файлу для уникнення дублювання */

/* 2. Internal Pages Header - White background with dark text */
.white-header-page .main-header {
    background: white !important;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    top: auto;
    left: auto;
    width: auto;
}

/* Стилі для фіксованого оверлею видалені - використовуємо новий підхід */

.white-header-page .main-header .navbar {
    background: white !important;
    padding: 25px 0;
}

.white-header-page .main-header .nav-link {
    color: #333 !important;
}

.white-header-page .main-header .navbar-brand img {
    filter: none !important;
}

.white-header-page .main-header .mega-menu > .nav-link::after,
.white-header-page .main-header .submenu > .nav-link::after {
    color: #333 !important;
}

/* Випадаюче меню на внутрішніх сторінках */

.white-header-page .main-header .mega-menu .mega-menu-content::before {
    top: -25px;
    height: 25px;
    left: 30%;
    right: 30%;
}

/* Спеціальний міст для першого мега-меню (Residential) на внутрішніх сторінках */
.white-header-page .main-header .mega-menu:first-of-type .mega-menu-content::before {
    left: 20%;
    right: 20%;
}

.white-header-page .main-header .mega-menu-content ul li a,
.white-header-page .main-header .submenu-content a {
    color: #333 !important;
}

.white-header-page .main-header .mega-menu-content ul li a:hover,
.white-header-page .main-header .submenu-content a:hover {
    color: #FF0000 !important;
}

/* Top-bar */
.top-bar {
    background: #FF0000;
    color: white;
    position: relative;
    z-index: 1000;
}

.top-bar a {
    color: white;
}
/* Header Styles - Clean and Integrated */

/* 1. Default Header (Homepage) - Transparent with white text */
.main-header {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.main-header .navbar {
    background: transparent;
    padding: 25px 0;
    transition: padding 0.3s ease;
}

.main-header .nav-link {
    color: white !important;
    transition: color 0.3s ease;
}

.main-header .navbar-brand img {
    transition: height 0.3s ease;
}

/* Fixed Header стилі перенесено в окремий файл fixed-header.css */



/* Cost of Relocation Section Styles Start */
.cost-relocation-section {
    padding: 80px 0;
    background: #fff;
}

.cost-relocation-section .section-title {
    text-align: left;
    margin-bottom: 60px;
}

.cost-relocation-section .section-title h3 {
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6em;
    text-transform: uppercase;
    color: #666;
    padding-left: 34px;
    margin-bottom: 10px;
}

.cost-relocation-section .section-title h3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url('../img/icon-sub-heading.svg') no-repeat;
    background-position: left center;
    background-size: cover;
    width: 24px;
    height: 24px;
}

.cost-relocation-section .section-title h2 {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.cost-relocation-section .section-title h2 span {
    color: #FF0000;
}

.cost-relocation-image {
    margin-bottom: 30px;
}

.cost-relocation-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.cost-relocation-items {
    padding: 0 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cost-relocation-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 15px;
}

.cost-relocation-item:last-child {
    margin-bottom: 0;
}

.cost-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

.cost-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}

.cost-content h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.cost-content p {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .cost-relocation-section {
        padding: 60px 0;
    }
    
    .cost-relocation-section .section-title {
        margin-bottom: 40px;
    }
    
    .cost-relocation-section .section-title h2 {
        font-size: 36px;
    }
    
    .cost-relocation-image {
        margin-bottom: 40px;
    }
    
    .cost-relocation-items {
        height: auto;
        justify-content: flex-start;
    }
    
    .cost-relocation-item {
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {
    .cost-relocation-section {
        padding: 40px 0;
    }
    
    .cost-relocation-section .section-title {
        margin-bottom: 30px;
    }
    
    .cost-relocation-section .section-title h2 {
        font-size: 28px;
    }
    
    .cost-relocation-item {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .cost-icon {
        width: 20px;
        height: 20px;
    }
    
    .cost-icon img {
        width: 20px;
        height: 20px;
    }
    
    .cost-content h4 {
        font-size: 18px;
    }
    
    .cost-content p {
        font-size: 15px;
    }
}
/* Cost of Relocation Section Styles End */

/* Mobile Hero Section Fix */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 140px !important;
        padding-bottom: 60px !important;
        min-height: 100vh !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .hero-section .row {
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        min-height: auto !important;
    }
    
    .hero-section .col-lg-6 {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hero-content {
        text-align: center !important;
            margin-bottom: 40px !important;
    }
    
    .hero-section .hero-content h1 {
        font-size: 36px !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }
    
    .hero-section .hero-content p {
        font-size: 18px !important;
        margin-bottom: 30px !important;
    }
    
    .quote-form-container {
        width: 100% !important;
        max-width: 500px !important;
        margin: 0 auto !important;
        padding: 0 20px !important;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding-top: 120px !important;
        padding-bottom: 50px !important;
        min-height: 100vh !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .hero-section .hero-content h1 {
        font-size: 32px !important;
    }
    
    .hero-section .hero-content p {
        font-size: 16px !important;
    }
    
    .quote-form-container {
        padding: 0 25px !important;
    }
    
    .quote-form {
        padding: 20px 20px 35px 20px !important;
    }
    
    .quote-form-header {
        padding: 30px 5px 0 5px !important;
        margin-bottom: 15px !important;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 100px !important;
        padding-bottom: 40px !important;
        min-height: 100vh !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .hero-section .hero-content h1 {
        font-size: 28px !important;
        margin-bottom: 15px !important;
    }
    
    .hero-section .hero-content p {
        font-size: 15px !important;
        margin-bottom: 25px !important;
    }
    
    .quote-form-container {
        max-width: 100% !important;
        padding: 0 20px !important;
    }
    
    .quote-form {
        padding: 15px 15px 30px 15px !important;
    }
    
    .quote-form-header {
        padding: 30px 5px 0 5px !important;
        margin-bottom: 15px !important;
    }
}

/* Mobile Services Section Fix */
@media (max-width: 767px) {
    .our-services .col-lg-3.col-md-6 {
        margin-bottom: 20px !important;
    }
    
    .our-services .col-lg-3.col-md-6:last-child {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 576px) {
    .our-services .col-lg-3.col-md-6 {
        margin-bottom: 20px !important;
    }
    
    .our-services .col-lg-3.col-md-6:last-child {
        margin-bottom: 0 !important;
    }
}

/* Mobile Prices Section Fix */
@media (max-width: 767px) {
    .prices-section .col-lg-4.col-md-6 {
        margin-bottom: 20px !important;
    }
    
    .prices-section .col-lg-4.col-md-6:last-child {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 576px) {
    .prices-section .col-lg-4.col-md-6 {
        margin-bottom: 20px !important;
    }
    
    .prices-section .col-lg-4.col-md-6:last-child {
        margin-bottom: 0 !important;
    }
}

/* Mobile Who We Are Images Fix */
@media (max-width: 767px) {
    .who-we-are-images {
        margin-top: 20px !important;
    }
}

@media (max-width: 576px) {
    .who-we-are-images {
        margin-top: 20px !important;
    }
}

/* What We Do Section Responsive Fix */
@media (max-width: 991px) {
    .what-we-do {
        padding: 50px 0 !important;
    }
    
    .what-we-do-box {
        margin-top: 0px !important;
    }
    
    .what-we-do-image figure,
    .what-we-do-image img {
        border-radius: 26px !important;
    }
    
    .what-we-do-image {
        margin-top: 0px !important;
        margin-bottom: 30px !important;
    }
    
    .what-we-do-image img {
        aspect-ratio: 1 / 0.7 !important;
    }
    
    .what-we-content {
        margin-left: 0 !important;
        margin-top: 30px !important;
        border-radius: 26px !important;
        padding: 30px !important;
    }
    
    .what-we-item .icon-box {
        width: 50px !important;
        height: 50px !important;
        margin-right: 10px !important;
    }
    
    .what-we-item .icon-box img {
        max-width: 26px !important;
    }
    
    .what-we-item-content {
        width: calc(100% - 60px) !important;
    }
}

@media (max-width: 767px) {
    .what-we-do-image img {
        aspect-ratio: 1 / 0.9 !important;
    }
    
    .what-we-content {
        padding: 20px !important;
    }
    
    .what-we-content .section-title {
        margin-bottom: 20px !important;
        padding-bottom: 20px !important;
    }
    
    .what-we-item {
        width: 100% !important;
    }
    
    .what-we-item:after {
        width: 100% !important;
        height: 1px !important;
        top: auto !important;
        right: 0 !important;
        bottom: -15px !important;
    }
    
    .what-we-item:nth-child(2n + 2):after {
        display: block !important;
    }
    
    .what-we-item:last-child:after {
        display: none !important;
    }
    
    .what-we-item-content h3 {
        font-size: 18px !important;
    }
    
    /* What We Counter List Responsive */
    .what-we-counter-list {
        gap: 20px !important;
        margin-top: 30px !important;
    }
    
    .what-we-counter-item {
        width: calc(50% - 10px) !important;
        margin-bottom: 20px !important;
    }
    
    .what-we-counter-item h2 {
        font-size: 24px !important;
        margin-bottom: 8px !important;
    }
    
    .what-we-counter-item p {
        font-size: 14px !important;
        line-height: 1.3 !important;
    }
    
    .what-we-counter-item:after {
        display: none !important;
    }
}

/* What We Counter List - Tablet Responsive */
@media (max-width: 991px) {
    .what-we-counter-list {
        margin-top: 30px !important;
        gap: 20px !important;
    }
    
    .what-we-counter-item {
        width: calc(50% - 10px) !important;
        margin-bottom: 20px !important;
    }
    
    .what-we-counter-item:after {
        display: none !important;
    }
    
    .what-we-counter-item h2 {
        font-size: 32px !important;
        margin-bottom: 8px !important;
    }
    
    .what-we-counter-item p {
        font-size: 16px !important;
        line-height: 1.3 !important;
    }
    
    /* Work Process Mobile Styles */
    .our-work-process {
        padding: 30px 0;
    }
    
    .work-process-list {
        flex-direction: column;
        gap: 30px;
    }
    
    .work-process-item {
        width: 100%;
        margin-top: 0 !important;
    }
    
    .work-process-item:after {
        display: none;
    }
    
    .work-process-item .icon-box {
        width: 102px;
        height: 102px;
    }
    
    .work-process-item .icon-box img {
        max-width: 40px;
    }
}



/* Header Overlap Fix for Category Pages */
body:not(.home):not(.page-id-0) .main-content {
    margin-top: 0;
    padding-top: 0;
}

/* White header pages need top padding to account for header height */
.white-header-page .main-content {
    margin-top: 0;
    padding-top: 120px; /* Height of top-bar + navbar */
}

/* Breadcrumbs section adjustment for white header pages */
.white-header-page .breadcrumbs-section {
    margin-top: 0;
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Hero section 2 adjustment for white header pages */
.white-header-page .hero-section-2 {
    margin-top: -120px;
    padding-top: 160px; /* 120px for header + 40px original padding */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .white-header-page .main-content {
        padding-top: 100px; /* Smaller header on mobile */
    }
    
    .white-header-page .breadcrumbs-section {
        margin-top: 0;
    }
    
    .white-header-page .hero-section-2 {
        margin-top: -100px;
        padding-top: 130px; /* 100px for header + 30px original padding */
    }
}

/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #FF0000;
    border: 2px solid #FF0000;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background-color: #CC0000;
    border-color: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.back-to-top-btn:active {
    transform: translateY(0);
}

.back-to-top-btn svg {
    transition: transform 0.2s ease;
}

.back-to-top-btn:hover svg {
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .back-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .back-to-top-btn {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* About Us Team Section - White Text Styles */
.about-us-team .about-us-team-title .section-subtitle {
    color: #ffffff !important;
}

.about-us-team .about-us-team-title .section-title {
    color: #ffffff !important;
}

.about-us-team .about-us-team-title p {
    color: #ffffff !important;
}

.about-us-team .about-us-team-content .team-member-name a {
    color: #ffffff !important;
}

.about-us-team .about-us-team-content p {
    color: #ff0000 !important;
}

/* About Us Blog Section - Button Styles */
.our-blog .blog-read-more .btn-default {
    background: #FF0000;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

.our-blog .blog-read-more .btn-default:hover {
    background: #CC0000;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* SEO Block Styles */
.seo-block-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.seo-content-wrapper {
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

/* Custom scrollbar styling */
.seo-content-wrapper::-webkit-scrollbar {
    width: 8px;
}

.seo-content-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.seo-content-wrapper::-webkit-scrollbar-thumb {
    background: #FF0000;
    border-radius: 10px;
    border: 2px solid #f1f1f1;
}

.seo-content-wrapper::-webkit-scrollbar-thumb:hover {
    background: #CC0000;
}

/* Firefox scrollbar */
.seo-content-wrapper {
    scrollbar-width: thin;
    scrollbar-color: #FF0000 #f1f1f1;
}

/* SEO content typography */
.seo-content-wrapper h2,
.seo-content-wrapper h3,
.seo-content-wrapper h4,
.seo-content-wrapper h5,
.seo-content-wrapper h6 {
    color: #282828;
    margin-bottom: 15px;
    line-height: 1.4;
}

.seo-content-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
}

.seo-content-wrapper h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

.seo-content-wrapper h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

.seo-content-wrapper h5 {
    font-size: 1.25rem;
    font-weight: 500;
}

.seo-content-wrapper h6 {
    font-size: 1.1rem;
    font-weight: 500;
}

.seo-content-wrapper p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.seo-content-wrapper ul,
.seo-content-wrapper ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

.seo-content-wrapper li {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .seo-block-section {
        padding: 60px 0;
    }

    .seo-content-wrapper {
        padding: 20px;
        max-height: 250px;
    }
}


/* Start: Features Section Styling */
.features-section {
    padding: 80px 0;
}

.features-section-header {
    margin-bottom: 60px;
}

.features-section-header .section-title {
    text-align: left;
}

.features-section-header .section-title .section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.features-section-header .section-title .section-title span {
    color: #DC2626;
}

.features-section-header .section-title p {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
}

/* Features Block Description */
.features-block-description {
    max-width: 850px;
    font-size: 16px;
    color: #565969;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: left;
}

.features-block-description p {
    margin-bottom: 16px;
}

.features-block-description p:last-child {
    margin-bottom: 0;
}

.features-main-image {
    margin-bottom: 30px;
}

.features-main-image img {
    width: 403px;
    height: 330px;
    object-fit: cover;
    border-radius: 12px;
}

.features-list-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 24px;
}

.feature-item-horizontal {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon-truck,
.feature-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.feature-icon-image {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.feature-content-horizontal {
    flex: 1;
}

.feature-content-horizontal .feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.feature-content-horizontal .feature-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .features-section-header {
        margin-bottom: 40px;
    }

    .features-list-wrapper {
        margin-top: 40px;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .features-section-header .section-title .section-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .features-section-header .section-title .section-title {
        font-size: 28px;
    }

    .feature-content-horizontal .feature-title {
        font-size: 18px;
    }

    .features-main-image img {
        width: 100%;
        height: auto;
        max-width: 403px;
    }

    .feature-item-horizontal {
        gap: 15px;
    }
}
/* End: Features Section Styling */

/* Hero Service Buttons Styling */
.hero-service-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid;
    min-width: 180px;
    height: 52px;
}

/* Red button (highlighted) - already has styles */
.hero-service-btn.btn-highlighted {
    background-color: #FF0000;
    border-color: #FF0000;
    color: white;
}

.hero-service-btn.btn-highlighted:hover {
    background-color: #CC0000;
    border-color: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
    text-decoration: none;
    color: white;
}

/* White button */
.hero-service-btn.btn-white {
    background-color: white;
    border-color: white;
    color: #333;
}

.hero-service-btn.btn-white:hover {
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #333;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .hero-content {
        padding: 0px;
    }

    .hero-service-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-service-btn {
        min-width: 100%;
        font-size: 13px;
        padding: 12px 24px;
        height: 48px;
    }
}

@media (max-width: 400px) {
    .hero-service-btn {
        font-size: 12px;
        padding: 10px 20px;
        height: 44px;
    }
}
/* End: Hero Service Buttons Styling */

/* Hero Content Center Alignment */
.hero-content {
    text-align: center !important;
}

.hero-content .hero-title,
.hero-content .hero-subtitle {
    text-align: center;
}

/* Center the service buttons as well */
.hero-service-buttons {
    justify-content: center;
}


/* Hero Service Buttons Arrow Styling */
.hero-service-btn .btn-arrow {
    margin-left: 8px;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.hero-service-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Responsive arrow sizing */
@media (max-width: 576px) {
    .hero-service-btn .btn-arrow {
        width: 18px;
        height: 18px;
        margin-left: 6px;
    }
}


/* Hero Content Width Adjustment */
.hero-content {
    max-width: 540px;
    margin: 0 auto;
}

/* Ensure buttons stay horizontal on larger screens */
@media (min-width: 600px) {
    .hero-service-buttons {
        flex-direction: row !important;
    }
}


/* Hero Service Buttons - Compact Layout for Side-by-Side Display */
.hero-service-btn {
    min-width: 150px !important; /* Reduce from 180px */
    padding: 12px 20px !important; /* Reduce padding */
    font-size: 13px !important; /* Slightly smaller font */
}

.hero-service-buttons {
    gap: 12px !important; /* Reduce gap from 16px */
}

/* Force horizontal layout on larger screens */
@media (min-width: 500px) {
    .hero-service-buttons {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }
    
    .hero-service-btn {
        min-width: 140px !important;
        flex: 1;
        max-width: 160px;
    }
}


/* Remove compact button styles and increase hero-content width */
.hero-content {
    max-width: 620px !important; /* Increase from 540px to 620px */
}

/* Reset hero service buttons to original size */
.hero-service-btn {
    min-width: 180px !important; /* Back to original */
    padding: 14px 28px !important; /* Back to original */
    font-size: 14px !important; /* Back to original */
}

.hero-service-buttons {
    gap: 16px !important; /* Back to original */
}

/* Override previous compact styles */
@media (min-width: 500px) {
    .hero-service-btn {
        min-width: 180px !important;
        flex: none !important;
        max-width: none !important;
    }
}


/* White Button Arrow Color Fix */
.btn-white-arrow .btn-arrow {
    filter: none !important;
}

/* Ensure dark arrow visibility on white button */
.btn-white-arrow .btn-arrow path {
    fill: #282828 !important;
}

/* Override any conflicting styles */
.hero-service-btn.btn-white-arrow .btn-arrow {
    opacity: 1 !important;
}


/* Services Section Tabs Styling */
.services-tabs {
    margin-top: 40px;
}

.services-tabs .tab-buttons {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    width: 530px;
    margin-left: auto;
    margin-right: auto;
}

.services-tabs .tab-btn {
    background: white;
    border: 1px solid #B2B2B2;
    padding: 0;
    height: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    border-radius: 0;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-tabs .tab-btn:first-child {
    border-radius: 25px 0 0 25px;
    border-right: none;
}

.services-tabs .tab-btn:last-child {
    border-radius: 0 25px 25px 0;
    border-left: none;
}

.services-tabs .tab-btn.active {
    background: #FF0000;
    color: white;
    border-color: #FF0000;
}

.services-tabs .tab-btn:hover {
    background: #FF0000;
    color: white;
    border-color: #FF0000;
}

.services-tabs .tab-content {
    margin-top: 40px;
}

.services-tabs .tab-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.services-tabs .tab-pane.active {
    display: block;
    opacity: 1;
}

/* Responsive tabs */
@media (max-width: 768px) {
    .services-tabs .tab-buttons {
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto 40px auto !important;
    }

    .services-tabs .tab-btn {
        height: 45px !important;
        font-size: 14px !important;
        padding: 0 15px !important;
    }

    .services-tabs .tab-btn:first-child {
        border-radius: 22px 0 0 22px !important;
        border-right: none !important;
    }

    .services-tabs .tab-btn:last-child {
        border-radius: 0 22px 22px 0 !important;
        border-left: none !important;
    }

    .services-tabs {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .services-tabs .tab-buttons {
        gap: 0 !important;
        max-width: 100% !important;
        margin-bottom: 30px !important;
    }

    .services-tabs .tab-btn {
        height: 40px !important;
        font-size: 14px !important;
        padding: 0 10px !important;
    }

    .services-tabs .tab-btn:first-child {
        border-radius: 20px 0 0 20px !important;
        border-right: none !important;
    }

    .services-tabs .tab-btn:last-child {
        border-radius: 0 20px 20px 0 !important;
        border-left: none !important;
    }
}

/* Features Section - Custom Proportions */
.features-section .features-image-col {
    flex: 0 0 40%;
    max-width: 40%;
}

.features-section .features-list-col {
    flex: 0 0 60%;
    max-width: 60%;
}

/* Responsive adjustments for features proportions */
@media (max-width: 991px) {
    .features-section .features-image-col,
    .features-section .features-list-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
