/* ==========================================================================
   WR PRIME LOG - CUSTOM MODERN STYLES
   Consolidated: 2026-02-18
   Includes: Modern UI, Testimonial V4, Button Fixes, Arrow Fixes
   ========================================================================== */

/* =========================================
   1. VARIABLES & TYPOGRAPHY
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --primary-color: #002B5B;
    /* Deep Navy Blue */
    --secondary-color: #2B4C7E;
    /* Lighter Navy */
    --accent-color: #D4AF37;
    /* Gold/Bronze */
    --text-dark: #1A1A1A;
    --text-light: #5A5A5A;
    --bg-light: #F9FAFB;
    --white: #FFFFFF;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;

    /* Spacing & Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.15);
    --radius-sm: 6px;
    --radius-md: 12px;
}

/* Base Overrides */
body {
    font-family: var(--font-body);
    color: var(--text-light);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    transition: all 0.3s ease;
}

/* Header & Nav */
.header_area .navbar .nav .nav-item .nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
}

/* Enhancing Cards */
.single-feature,
.single-service {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.single-feature:hover,
.single-service:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

/* Section Titles */
.section-title-wrap h5 {
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 2px;
}

.section-title-wrap h2 {
    color: var(--primary-color);
}

/* Footer */
.footer-area {
    background: #001f42;
}

/* Form Controls */
.form-control {
    border-radius: var(--radius-sm);
    border: 1px solid #eee;
    padding: 12px 15px;
}

.form-control:focus {
    border-color: var(--secondary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    animation-name: fadeInUp;
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .header_area .navbar .nav .nav-item .nav-link {
        padding-left: 15px;
    }

    .home_banner_area.banner-area .banner_inner .banner_content {
        padding: 50px 0;
    }
}




/* =========================================
   2. BUTTONS (REFACTORED - GRADIENT BTN)
   ========================================= */

.gradient-btn {
    display: inline-block !important;
    padding: 0 40px !important;
    line-height: 50px !important;
    height: 50px !important;
    border-radius: 50px !important;
    background: linear-gradient(90deg, #002B5B 0%, #307cd3 100%) !important;
    color: #fff !important;
    font-family: var(--font-heading) !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    letter-spacing: 1px !important;
    border: 3px solid #fff !important;
    /* Sticker effect */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15) !important;
    /* Subtle shadow on the border */
    transition: all 0.3s ease !important;
    position: relative !important;
    z-index: 10 !important;
    text-align: center !important;
    text-decoration: none !important;
    min-width: 150px !important;
    margin-top: 20px !important;
    /* improved positioning */
    /* Ensure minimum width for touch targets */
}

.gradient-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 43, 91, 0.3) !important;
    color: var(--white) !important;
    background: linear-gradient(90deg, #307cd3 0%, #002B5B 100%) !important;
    text-decoration: none !important;
}

/* =========================================
   3. HERO BUTTON (FLAT NAVY)
   ========================================= */
.hero-btn {
    padding: 0 30px !important;
    line-height: 40px !important;
    height: 40px !important;
    border-radius: 40px !important;
    background: #002B5B !important;
    /* Flat Navy Blue */
    color: #fff !important;
    font-family: var(--font-heading) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    letter-spacing: 1px !important;
    border: none !important;
    /* No sticker border */
    box-shadow: 0 5px 15px rgba(0, 43, 91, 0.2) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    z-index: 10 !important;
    text-align: center !important;
    text-decoration: none !important;
    min-width: 120px !important;
    margin-top: 20px !important;
    float: right !important;
    font-size: 13px !important;
}

.hero-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 43, 91, 0.4) !important;
    background: #001f42 !important;
    /* Darker Navy on hover */
    color: #fff !important;
    text-decoration: none !important;
}

.gradient-btn:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(0, 43, 91, 0.1) !important;
}


/* =========================================
   3. TESTIMONIAL V4 "Radical Redesign"
   ========================================= */

#testimonial-v4 {
    background-color: #001f3f;
    /* Darker Navy */
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}


#testimonial-v4 .container {
    position: relative;
    z-index: 1;
}

/* Hide Default Section Title for this modern look */
#testimonial-v4 .section-title-wrap {
    text-align: left !important;
    margin-bottom: 60px;
    border-left: 5px solid #D4AF37;
    padding-left: 20px;
}

#testimonial-v4 .section-title-wrap h5 {
    color: #D4AF37;
    letter-spacing: 4px;
    font-size: 14px;
    margin-bottom: 10px;
}

#testimonial-v4 .section-title-wrap h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: none;
}

/* Card Styling - Completely Square & Sharp */
.single_testi {
    background: #0b325e !important;
    /* Force Blue Block */
    padding: 50px 40px;
    border: none;
    border-radius: 0;
    position: relative;
    margin: 15px;
    transition: transform 0.4s ease;
    text-align: left !important;
    /* Force Left Align */
}

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

/* Giant Quote Mark Background */
.single_testi::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.05);
    /* Extremely subtle */
    font-family: serif;
    line-height: 1;
}

.testi_box p {
    color: #dbe4ef;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

/* Avatar & Info - Horizontal Layout */
.testi_meta {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

.testi_avatar {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    margin-right: 20px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.testi_avatar img {
    max-width: 90%;
    max-height: 90%;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 0;
}

.testi_info h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testi_info h6 {
    color: #D4AF37;
    font-size: 13px;
    font-weight: 500;
    margin: 5px 0 0 0;
}

/* Dots Styles */
.owl-dots {
    margin-top: 40px;
    text-align: left;
    padding-left: 15px;
}

.owl-dots .owl-dot span {
    width: 30px !important;
    height: 3px !important;
    border-radius: 0 !important;
    background: rgba(255, 255, 255, 0.2) !important;
    margin: 5px 5px 5px 0 !important;
    transition: all 0.3s;
}

.owl-dots .owl-dot.active span {
    background: #D4AF37 !important;
    width: 50px !important;
}


/* =========================================
   4. NAVIGATION ARROWS (NUCLEAR FIX)
   ========================================= */

/* Default State */
#testimonial-v4 .owl-nav .owl-prev,
#testimonial-v4 .owl-nav .owl-next,
#testimonial-v4 .owl-nav button.owl-prev,
#testimonial-v4 .owl-nav button.owl-next {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    width: 30px !important;
    /* Smaller size */
    height: 30px !important;
    top: -80px !important;
    opacity: 0.7 !important;
    visibility: visible !important;
    transition: none !important;
    /* Kill delayed transition */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Kill Pseudo-elements (Blue Box & Triangle) from style.css */
#testimonial-v4 .owl-nav .owl-prev::before,
#testimonial-v4 .owl-nav .owl-next::before,
#testimonial-v4 .owl-nav .owl-prev::after,
#testimonial-v4 .owl-nav .owl-next::after,
#testimonial-v4 .owl-nav button::before,
#testimonial-v4 .owl-nav button::after {
    content: none !important;
    display: none !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
}

/* Arrow Icons (SVG) */
#testimonial-v4 .owl-nav .owl-prev svg,
#testimonial-v4 .owl-nav .owl-next svg {
    color: rgba(255, 255, 255, 0.3) !important;
    /* Very subtle default */
    width: 20px !important;
    height: 20px !important;
    transition: all 0.3s ease !important;
}

/* Hover State */
#testimonial-v4 .owl-nav .owl-prev:hover svg,
#testimonial-v4 .owl-nav .owl-next:hover svg {
    color: #D4AF37 !important;
    transform: scale(1.1);
}

/* =========================================
   5. MODERN BLOG SECTION (REDESIGN)
   ========================================= */

.modern-blog-section {
    padding: 100px 0;
    background: #f8fbff;
    position: relative;
    overflow: hidden;
}

.modern-blog-section .section-title-wrap {
    margin-bottom: 60px;
}

.blog-card-v2 {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 43, 91, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
}

.blog-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 43, 91, 0.12);
}

.blog-thumb-v2 {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-thumb-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.blog-card-v2:hover .blog-thumb-v2 img {
    transform: scale(1.1);
}

.blog-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-color);
    color: #fff;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
}

.blog-content-v2 {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-content-v2 .date {
    font-size: 13px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content-v2 h4 {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 15px;
    color: var(--primary-color);
    transition: color 0.3s;
}

.blog-card-v2:hover h4 {
    color: #307cd3;
}

.blog-content-v2 p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

.blog-footer-v2 {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-link-more {
    font-weight: 700;
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.blog-link-more:hover {
    gap: 12px;
    color: #307cd3;
}

.blog-link-more i {
    font-size: 12px;
}

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

/* Glassmorphism accent for the third card unique look */
.blog-card-v2.featured-glass {
    background: linear-gradient(135deg, #002B5B 0%, #001f3f 100%);
}

.blog-card-v2.featured-glass .blog-content-v2 h4,
.blog-card-v2.featured-glass .blog-content-v2 p {
    color: #fff;
}

.blog-card-v2.featured-glass .blog-footer-v2 {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-card-v2.featured-glass .blog-link-more {
    color: var(--accent-color);
}

/* =========================================
   6. PREMIUM CTA SECTION (REDESIGN)
   ========================================= */

.premium-cta-section {
    padding: 120px 0;
    background: #fff;
    position: relative;
}

.cta-glass-card {
    background: linear-gradient(135deg, #002B5B 0%, #307cd3 100%);
    padding: 70px 80px;
    border-radius: 40px;
    box-shadow: 0 30px 70px rgba(0, 43, 91, 0.25);
    position: relative;
    overflow: hidden;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Background Flare */
.cta-glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.cta-text-content {
    position: relative;
    z-index: 1;
    max-width: 60%;
}

.cta-text-content p {
    color: rgba(255, 255, 255, 0.8) !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 15px;
    display: block;
}

.cta-text-content h2 {
    color: #fff !important;
    font-size: 48px !important;
    font-weight: 700 !important;
    margin-bottom: 0;
    line-height: 1.15;
    letter-spacing: -1px;
}

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

.premium-cta-btn {
    background: #fff !important;
    color: var(--primary-color) !important;
    padding: 0 45px !important;
    line-height: 60px !important;
    height: 60px !important;
    border-radius: 60px !important;
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    display: inline-block !important;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
    border: none !important;
}

.premium-cta-btn:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
    background: var(--accent-color) !important;
    color: #fff !important;
}

@media (max-width: 991px) {
    .cta-glass-card {
        flex-direction: column;
        text-align: center;
        padding: 60px 30px;
    }

    .cta-text-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .cta-text-content h2 {
        font-size: 36px !important;
    }
}

/* =========================================
   7. COMPACT FOOTER (REDESIGN)
   ========================================= */

.footer_compact_gap {
    padding: 80px 0 40px !important;
    /* Significantly reduced from 150px */
}

.footer-area:before {
    height: 100% !important;
    /* Remove fixed 582px height */
    top: 0 !important;
    background: #1a1a2e !important;
    /* Matching primary color theme */
}

.single-footer-widget h6 {
    margin-bottom: 25px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    color: #fff !important;
    text-transform: uppercase;
}

.single-footer-widget p {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 14px;
    line-height: 1.6;
}

.footer-social a i {
    font-size: 18px;
    color: #fff;
    transition: color 0.3s;
}

.footer-social a:hover i {
    color: var(--accent-color);
}

.footer-text {
    padding-top: 30px !important;
    margin-top: 40px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.footer-text p {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-bottom: 5px !important;
}

/* Newsletter Modernization */
.single-footer-widget .form-inline {
    display: flex !important;
    width: 100%;
    margin-top: 20px;
}

.single-footer-widget input.form-control {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    height: 50px !important;
    border-radius: 30px 0 0 30px !important;
    padding-left: 25px !important;
    flex-grow: 1;
    font-size: 14px;
}

.single-footer-widget .click-btn {
    background: var(--accent-color) !important;
    border-radius: 0 30px 30px 0 !important;
    height: 50px !important;
    padding: 0 25px !important;
    transition: all 0.3s ease !important;
    color: #fff;
    border: none;
}

.single-footer-widget .click-btn:hover {
    background: #fff !important;
    color: var(--primary-color) !important;
}

@media (max-width: 991px) {
    .footer_compact_gap {
        padding: 60px 0 30px !important;
    }
}

/* =========================================
   8. SECONDARY PAGE HERO (GLASS STYLE)
   ========================================= */

.secondary-hero-area {
    padding: 110px 0 50px;
    min-height: 280px;
    background: linear-gradient(rgba(0, 43, 91, 0.75), rgba(0, 43, 91, 0.75)),
        url('../img/banner/common-banner.jpg') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.glass-hero-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 50px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    width: 100%;
    position: relative;
    z-index: 1;
}

.glass-hero-card h1 {
    color: #fff !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.glass-hero-card p {
    color: rgba(255, 255, 255, 0.75) !important;
    max-width: 600px;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-breadcrumb a {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.hero-breadcrumb a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.hero-breadcrumb i {
    color: var(--accent-color);
    font-size: 10px;
}

@media (max-width: 767px) {
    .glass-hero-card {
        padding: 40px 25px;
        text-align: center;
    }

    .glass-hero-card h1 {
        font-size: 30px !important;
    }

    .hero-breadcrumb {
        justify-content: center;
    }
}

/*================ Partners Modern Section =================*/
.partners-modern-section {
    padding: 60px 0;
    background-color: #fbfbfb;
}

.partner-category-block {
    margin-bottom: 35px;
}

.partner-category-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    padding-left: 15px;
}

.partner-category-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 18px;
    background: var(--accent-color);
    border-radius: 10px;
}

.partner-category-title::after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), transparent);
    opacity: 0.3;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.partner-logo-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.partner-logo-card img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.partner-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 43, 91, 0.08);
    border-color: rgba(0, 43, 91, 0.1);
}

.partner-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}

/* =========================================
   9. MODERN ABOUT SECTION (MINIMALIST)
   ========================================= */

.modern-about-section {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.minimalist-logo-box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.minimalist-logo-box:hover {
    transform: translateY(-5px);
}

.about-text-content {
    position: relative;
    padding-left: 30px;
}

/* Minimalist Decorative Line */
.about-text-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    border-radius: 10px;
}

.about-text-content p {
    color: #555 !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
    margin-bottom: 20px;
    text-align: justify;
}

.about-text-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .modern-about-section {
        padding: 60px 0;
    }

    .about-text-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .about-text-content::before {
        display: none;
    }
}

/*================ Address Modern Section =================*/
.address-modern-section {
    padding: 100px 0;
    background-image: linear-gradient(rgba(0, 43, 91, 0.75), rgba(0, 43, 91, 0.75)),
        url('../img/bg/logistics_map_bg.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    color: #fff;
}

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

.address-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s ease;
}

.address-glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
}

.address-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--accent-color);
    font-size: 20px;
}

.address-glass-card h4 {
    color: #fff !important;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.address-glass-card p {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

.address-glass-card .address-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #fff !important;
}

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

    .address-glass-card {
        padding: 30px;
    }
}

/*================ MVV Modern Section =================*/
.mvv-modern-section {
    padding: 100px 0;
    background-color: #fff;
}

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

.mvv-card {
    position: relative;
    padding: 60px 40px;
    border-radius: 25px;
    color: #fff;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

/* Watermark Effect */
.mvv-card::before {
    content: "";
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 200px;
    height: 200px;
    background: url('../img/logo2.png') no-repeat center center/contain;
    opacity: 0.08;
    filter: brightness(0) invert(1);
    transform: rotate(-15deg);
    pointer-events: none;
    transition: all 0.5s ease;
}

.mvv-card:hover::before {
    transform: rotate(0deg) scale(1.1);
    opacity: 0.12;
}

/* Color Variations */
.mvv-card.mission {
    background: linear-gradient(135deg, #002B5B 0%, #004b9b 100%);
}

.mvv-card.vision {
    background: linear-gradient(135deg, #D4AF37 0%, #f1c40f 100%);
}

.mvv-card.values {
    background: linear-gradient(135deg, #1e7e34 0%, #28a745 100%);
}

.mvv-card h3 {
    color: #fff !important;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mvv-card h3 i {
    font-size: 28px;
    opacity: 0.9;
}

.mvv-card p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0;
}

.mvv-card.values p {
    line-height: 1.6;
}

/* Ethics Button Container */
.ethics-cta-wrap {
    margin-top: 60px;
    text-align: center;
}

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

    .mvv-card {
        padding: 40px 30px;
    }
}

/*================ Gallery Modern Section =================*/
.modern-gallery-section {
    padding: 100px 0;
    background-color: #f9f9ff;
}

.gallery-filter-wrap {
    margin-bottom: 50px;
    text-align: center;
}

.filter-btn {
    background: #fff;
    border: 1px solid #eee;
    padding: 12px 25px;
    margin: 5px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #777;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 43, 91, 0.2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 43, 91, 0.9), rgba(0, 43, 91, 0.2));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

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

.gallery-overlay h5 {
    color: #fff !important;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-overlay span {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 13px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-overlay h5,
.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

.gallery-zoom-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-zoom-icon {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .gallery-item {
        height: 250px;
    }
}

/*================ Services Page Overhaul =================*/

/* Services Capabilities Grid */
.services-capabilities-section {
    padding: 30px 0;
    background: #fff;
    border-bottom: 1px solid rgba(0, 43, 91, 0.03);
}

.title-underline {
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    margin: 0 auto;
    border-radius: 2px;
}

.capabilities-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.capability-card-item {
    display: flex;
    align-items: center;
    padding: 25px;
    background: #fcfcfd;
    border: 1px solid rgba(0, 43, 91, 0.06);
    border-radius: 20px;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.capability-icon-wrap {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 43, 91, 0.05);
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.capability-info h3 {
    font-size: 17px;
    font-weight: 800;
    color: #002B5B;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.capability-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
}

.capability-arrow {
    margin-left: auto;
    font-size: 18px;
    color: #ccc;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.capability-card-item:hover {
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 43, 91, 0.12);
    transform: translateY(-5px);
}

.capability-card-item:hover .capability-icon-wrap {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
}

.capability-card-item:hover .capability-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--accent-color);
}

.capability-card-item.active {
    background: #fff;
    border-color: rgba(0, 43, 91, 0.15);
    box-shadow: 0 10px 30px rgba(0, 43, 91, 0.05);
}

.capability-card-item.active .capability-icon-wrap {
    background: rgba(0, 43, 91, 0.03);
}

@media (max-width: 991px) {
    .capabilities-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Cleanup Legacy Styles */

.service-premium-card.highlight {
    background: linear-gradient(145deg, #002B5B, #004b9b);
    color: #fff;
}

.service-premium-card .card-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 43, 91, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.service-premium-card.highlight .card-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.service-premium-card:hover .card-icon {
    transform: rotateY(180deg);
}

.service-premium-card h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
}

.service-premium-card.highlight h4 {
    color: #fff !important;
}

.service-premium-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #666;
}

.service-premium-card.highlight p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.card-link-btn {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-premium-card.highlight .card-link-btn {
    color: #fff;
}

.card-link-btn:hover {
    letter-spacing: 2px;
}

/* COMEX Definitions */
.services-definitions-section {
    padding: 40px 0;
    background: #fff;
}

.title-divider {
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 20px auto 0;
    border-radius: 2px;
}

.definition-card {
    background: #f9f9ff;
    border-radius: 25px;
    padding: 35px 30px;
    height: 100%;
    transition: all 0.3s ease;
    border-left: 5px solid transparent;
}

.definition-card:hover {
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-left-color: var(--primary-color);
}

.def-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.def-header i {
    font-size: 30px;
    color: var(--primary-color);
}

.def-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

.def-content {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

/* Detailed Sections */
.detailed-row {
    padding: 45px 0;
    position: relative;
    overflow: hidden;
}

.detailed-row.alt-bg {
    background-color: #f9f9ff;
}

/* Cinematic Feature Section */
.cinematic-feature-row {
    background: #fff;
    margin: 20px 0;
    /* Reduced from 120px to bring sections together */
    padding: 10px 0;
    /* Reduced from 40px */
    position: relative;
    overflow: visible !important;
    /* Allow stickers to pop out */
}

.cinematic-img-column {
    min-height: 550px;
    height: 100%;
}

.cinematic-bg-container {
    height: 100%;
    min-height: 550px;
    position: relative;
}

.cinematic-bg-img {
    height: 100%;
    min-height: 550px;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 0 40px 40px 0;
    /* The clip-path creates the integrated arrow look */
    clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%);
    z-index: 1;
}

.cinematic-mirror .cinematic-bg-img {
    border-radius: 40px 0 0 40px;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 15% 100%, 0% 50%);
}

.cinematic-mask-cut {
    display: none;
    /* Removed in favor of Polygon Clip Path */
}

/* Decorative Chevrons (Quem somos style) */
.cinematic-decor-chevrons {
    position: absolute;
    top: 50%;
    right: -25px;
    /* Offset to float over the cut line */
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 15;
    /* Above everything */
}

.cinematic-decor-chevrons.mirror {
    right: auto;
    left: -20px;
    z-index: 25;
}

.cinematic-decor-chevrons.mirror span {
    border-right: none;
    border-left: 4px solid #D4AF37;
    transform: rotate(45deg);
    /* Invert arrow direction */
    animation: chevronFloatMirror 4s infinite ease-in-out;
}

@keyframes chevronFloatMirror {

    0%,
    100% {
        transform: rotate(45deg) translate(0, 0);
    }

    50% {
        transform: rotate(45deg) translate(-5px, 5px);
    }
}

.cinematic-decor-chevrons span {
    width: 80px;
    height: 80px;
    border-right: 4px solid #D4AF37;
    /* Use Gold instead of transparent white */
    border-bottom: 4px solid #D4AF37;
    transform: rotate(-45deg);
    display: block;
    margin-bottom: -40px;
    animation: chevronFloat 4s infinite ease-in-out;
    filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.2));
}

.cinematic-decor-chevrons span:nth-child(2) {
    animation-delay: 0.2s;
    opacity: 0.8;
}

.cinematic-decor-chevrons span:nth-child(3) {
    animation-delay: 0.4s;
    opacity: 0.5;
}

@keyframes chevronFloat {

    0%,
    100% {
        transform: rotate(-45deg) translate(0, 0);
    }

    50% {
        transform: rotate(-45deg) translate(5px, 5px);
    }
}

/* Brand Sticker transitioning between zones */
.cinematic-brand-sticker {
    position: absolute;
    top: 50%;
    right: -75px;
    /* Pushed out to overlap but not be cut */
    transform: translateY(-50%);
    width: 130px;
    /* Sightly larger */
    height: 130px;
    background: #fff;
    padding: 15px;
    border-radius: 25px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    /* Soft gold border */
}

.cinematic-brand-sticker img {
    max-width: 100%;
    height: auto;
}

.cinematic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 43, 91, 0.2), transparent);
}

.cinematic-brand-sticker.mirror {
    right: auto;
    left: -85px;
    /* Pushed further left */
    z-index: 30;
}

.cinematic-overlay.mirror {
    background: linear-gradient(-90deg, rgba(0, 43, 91, 0.2), transparent);
}

.cinematic-overlay.mirror {
    background: linear-gradient(-90deg, rgba(0, 43, 91, 0.2), transparent);
}

.glass-card-column {
    padding-left: 100px;
    /* Offset for the brand sticker and cut */
    padding-right: 60px;
    z-index: 2;
}

.glass-card-column.mirror {
    padding-left: 60px;
    padding-right: 100px;
}

.glass-feature-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 60px;
    border-radius: 30px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 43, 91, 0.05);
    color: #002B5B;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 43, 91, 0.1);
}

.feature-badge i {
    margin-right: 8px;
    color: #ff8c00;
}

.lead-text {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 25px;
}

.divider-gold {
    width: 60px;
    height: 4px;
    background: #ff8c00;
    margin: 25px 0;
    border-radius: 2px;
}

.feature-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 24px;
    font-weight: 800;
    color: #002B5B;
}

.stat-label {
    font-size: 13px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .cinematic-bg-img {
        border-radius: 40px;
        min-height: 400px;
        margin-bottom: 30px;
        clip-path: none;
        /* Safe bet for mobile */
    }

    .cinematic-brand-sticker {
        right: 20px;
        top: 20px;
        transform: none;
        width: 70px;
        height: 70px;
        padding: 10px;
    }

    .cinematic-brand-sticker.mirror {
        right: auto;
        left: 20px;
    }

    .cinematic-decor-chevrons {
        display: none;
    }

    .glass-feature-card {
        padding: 40px 30px;
        box-shadow: none;
        background: transparent;
        border: none;
    }

    .glass-card-column {
        padding: 0 15px;
    }

    .cinematic-feature-row {
        margin: 40px 0;
    }
}

.detailed-img-wrap {
    position: relative;
    z-index: 1;
}

.detailed-img-wrap img {
    border-radius: 30px;
    transition: all 0.5s ease;
}

.img-accent-border {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 10px solid var(--accent-color);
    opacity: 0.1;
    z-index: -1;
    border-radius: 30px;
}

.img-accent-border.left {
    right: auto;
    left: -20px;
}

.detailed-text-card {
    padding: 40px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
}

.detailed-row.alt-bg .detailed-text-card {
    background: #fff;
}

.detailed-text-card p {
    line-height: 2;
    color: #666;
    margin-bottom: 20px;
}

/* Checklist Cards */
.checklist-premium-card {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    height: 100%;
    border-top: 6px solid var(--primary-color);
    transition: all 0.3s ease;
}

.checklist-premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.check-header {
    background: #fdfdfd;
    padding: 25px 30px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.check-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 43, 91, 0.08);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
}

.check-icon.accent {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-color);
}

.check-icon.success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.check-header h3 {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 0;
}

.check-body {
    padding: 25px 30px;
}

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

.custom-list-style ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 14.5px;
    color: #555;
    line-height: 1.5;
}

.custom-list-style ul li::before {
    content: "\f105";
    /* Angle right font awesome */
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    color: #D4AF37;
    /* Gold arrow */
    font-size: 18px;
    font-weight: 900;
    top: -2px;
}

@media (max-width: 991px) {
    .detailed-text-card {
        padding: 30px;
        margin-top: 30px;
    }

    .detailed-row {
        padding: 60px 0;
    }
}

/* Anchor Navigation Buttons */
.service-anchor-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.modern-anchor-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background: rgba(0, 43, 91, 0.05);
    color: #002B5B;
    border: 1px solid rgba(0, 43, 91, 0.1);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.modern-anchor-btn i {
    margin-right: 8px;
    font-size: 16px;
    color: #ff8c00;
    /* Accent orange for icons */
}

.modern-anchor-btn:hover {
    background: #002B5B;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 43, 91, 0.2);
}

.modern-anchor-btn:hover i {
    color: #fff;
}

/* Quote Section Overhaul - Reverted to Light Theme */
.request-quote-area {
    padding: 60px 0;
    background: #fff;
    color: #222;
}

.request-quote-area .section-title-wrap h5 {
    color: #D4AF37;
    /* Gold for subtitle */
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 15px;
}

.request-quote-area .section-title-wrap h2 {
    color: #002B5B;
    /* Dark Blue for title */
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Form Styles for Light Theme */
.request-quote-area .nav-tabs {
    border-bottom: 1px solid #eee;
}

.request-quote-area .nav-tabs .nav-link {
    color: #666;
}

.request-quote-area .nav-tabs .nav-link.active {
    color: #002B5B;
    background: transparent;
    border-color: transparent transparent #D4AF37;
}

.request-quote-area label {
    color: #444;
    font-weight: 600;
}

.request-quote-area .form-control {
    border: 1px solid #ddd;
    color: #333;
}

/* Ensure checklists have enough space */
.services-checklists-section {
    padding-top: 60px;
}

/*================ WhatsApp Floating Button =================*/
.whatsapp-float-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float-btn:hover {
    background-color: #1ebd5a;
    color: #FFF;
    transform: scale(1.1);
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.my-float {
    margin-top: 2px;
}

/* Pulsing Animation Effect */
.whatsapp-float-btn {
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 767px) {
    .whatsapp-float-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* Tools Section & Cards Premium Redesign */
.tools-section {
    padding: 60px 0 100px;
    background: #fff;
}

.tools-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.tool-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    text-decoration: none !important;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    width: 100%;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 43, 91, 0.12);
    border-color: rgba(212, 175, 55, 0.4);
}

.tool-icon-wrap {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.tool-icon-wrap i {
    font-size: 28px;
    color: #002B5B;
    /* Navy for better contrast */
    transition: all 0.4s ease;
}

.tool-card:hover .tool-icon-wrap {
    background: #D4AF37;
    transform: scale(1.1) rotate(-5deg);
}

.tool-card:hover .tool-icon-wrap i {
    color: #fff;
}

.tool-content {
    flex-grow: 1;
}

.tool-content h4 {
    margin: 0 0 10px 0;
    font-size: 19px;
    color: #002B5B;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.tool-content p {
    margin: 0;
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    padding-right: 30px;
}

.tool-arrow {
    width: 35px;
    height: 35px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.tool-card:hover .tool-arrow {
    background: #D4AF37;
    color: #fff;
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .tool-card {
        padding: 20px;
    }

    .tool-icon-wrap {
        width: 60px;
        height: 60px;
    }
}

/* Instagram Feed Section */
.instagram-feed-section {
    padding: 60px 0 30px;
    background: #fbfcfd;
}

.instagram-widget-container {
    background: #fff;
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0 15px 45px rgba(0, 43, 91, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.4s ease;
}

.instagram-widget-container:hover {
    box-shadow: 0 25px 60px rgba(0, 43, 91, 0.12);
}

.instagram-feed-section h2 {
    color: #002B5B;
    font-weight: 700;
}

.instagram-feed-section h5 {
    color: #D4AF37;
    text-transform: lowercase;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Dollar Rate Badge - Header */
.dollar-rate-wrap {
    background: rgba(0, 43, 91, 0.05);
    border: 1px solid rgba(0, 43, 91, 0.1);
    padding: 2px 15px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    margin-left: 20px;
    margin-top: 15px;
    /* Aligns with nav links */
    height: 38px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: scale(0.9);
}

.dollar-rate-wrap.loaded {
    opacity: 1;
    transform: scale(1);
    margin-left: 20px;
}

.dollar-rate-wrap i {
    color: #D4AF37;
    /* Gold */
    font-size: 14px;
    margin-right: 8px;
}

.dollar-rate-wrap .usd-label {
    font-size: 11px;
    font-weight: 700;
    color: #002B5B;
    margin-right: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dollar-rate-wrap #usd-value {
    font-size: 14px;
    font-weight: 700;
    color: #002B5B;
    font-family: var(--font-heading);
}

.dollar-rate-wrap:hover {
    background: #002B5B !important;
    border-color: #002B5B !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0, 43, 91, 0.2) !important;
    text-decoration: none !important;
}

.dollar-rate-wrap:hover i,
.dollar-rate-wrap:hover .usd-label,
.dollar-rate-wrap:hover #usd-value {
    color: #fff !important;
}

@media (max-width: 1199px) {
    .dollar-rate-wrap {
        margin-left: 10px;
        padding: 2px 10px;
    }
}