/* Elite Difference Section Styles */
.elite-section {
    position: relative;
    padding: 100px 0;
    background-color: #f9f9f9;
    /* Light background for contrast */
    overflow: hidden;
}

.elite-section .title-one .title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
}

.elite-section .description-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto 50px;
}

.elite-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

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

.elite-card .icon-box {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background: rgba(70, 166, 185, 0.1);
    /* Theme color light opacity */
    border-radius: 50%;
    color: #46A6B9;
    /* Theme color */
    font-size: 32px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.elite-card:hover .icon-box {
    background: #46A6B9;
    color: #fff;
}

.elite-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #212529;
}

.elite-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Premium Service Card Styles - Image Based */
.premium-service-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 0;
    /* Remove padding for full-width image */
    border-radius: 20px;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.premium-service-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
    border-color: transparent;
}

.premium-service-card .img-wrapper {
    height: 240px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.premium-service-card .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.premium-service-card:hover .img-wrapper img {
    transform: scale(1.1);
}

/* Gradient Overlay on Image */
.premium-service-card .img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    opacity: 0.6;
}

.premium-service-card .content-box {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.premium-service-card .service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #212529;
    font-family: 'Poppins', sans-serif;
}

.premium-service-card .service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    flex-grow: 1;
}

.premium-service-card .service-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #555;
    font-size: 16px;
    line-height: 1.5;
}

.premium-service-card .service-list li::before {
    content: "\F26E";
    /* Bootstrap check icon */
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 3px;
    color: #46A6B9;
    font-weight: bold;
    font-size: 14px;
}

.premium-service-card .arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    background: #f4faff;
    color: #46A6B9;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.premium-service-card:hover .arrow-btn {
    background: #46A6B9;
    color: #fff;
}

.premium-service-card .arrow-btn i {
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

.premium-service-card:hover .arrow-btn i {
    margin-left: 12px;
}

/* Service Scope Note */
.service-scope-note {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid #46A6B9;
    /* Theme color */
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    max-width: 900px;
    margin: 60px auto 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.service-scope-note strong {
    color: #212529;
    font-weight: 700;
    margin-right: 5px;
}

/* Post-Brexit Scetion Styles */
.brexit-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.brexit-intro {
    padding-right: 50px;
}

.brexit-intro .sub-title {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(70, 166, 185, 0.1);
    color: #46A6B9;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brexit-intro .title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    background: -webkit-linear-gradient(#212529, #444);
    -webkit-background-clip: text;
    background-clip: text;
}

.brexit-intro .description {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.expertise-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: #46A6B9;
}

.expertise-card .icon {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #46A6B9;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.expertise-card:hover .icon {
    background: #46A6B9;
    color: #fff;
}

.expertise-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #212529;
}

.expertise-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Client Confidence Section Styles */
.client-confidence-wrapper {
    margin-bottom: 80px;
    text-align: center;
}

.confidence-feature-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #eee;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.confidence-feature-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: #46A6B9;
}

.confidence-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #46A6B9;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.confidence-feature-card:hover::before {
    opacity: 1;
}

.confidence-feature-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.confidence-feature-card h4 i {
    color: #46A6B9;
    margin-right: 12px;
    font-size: 24px;
}

.confidence-feature-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}


/* Floating Contact Buttons */
.floating-contact-wrapper {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.float-btn:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.float-btn.whatsapp-btn {
    background-color: #25D366;
}

.float-btn.call-btn {
    background-color: #0b5edd;
    /* Standard blue for phone, or use theme color #46A6B9 */
}

/* Tooltip on hover */
.float-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    margin-left: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.float-btn:hover::after {
    opacity: 1;
    visibility: visible;
    margin-left: 15px;
}

/* Responsive */
@media (max-width: 991px) {
    .brexit-intro {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }

    .expertise-grid {
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .client-confidence-wrapper {
        margin-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .floating-contact-wrapper {
        bottom: 20px;
        left: 20px;
        gap: 10px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .elite-section {
        padding: 60px 0;
    }

    .elite-card {
        margin-bottom: 30px;
        padding: 30px 20px;
    }

    .premium-service-card {
        margin-bottom: 30px;
    }

    .premium-service-card .img-wrapper {
        height: 200px;
    }

    .premium-service-card .content-box {
        padding: 25px;
    }
}

@media (max-width: 575px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .brexit-intro .title {
        font-size: 32px;
    }
}