/* Global style (Corporate Logistics Theme) */

:root {
    /* New Palette: Deep Navy & Clean Steel */
    --primary-color: #002E5D;    /* Trust Navy */
    --secondary-color: #1A1A1A;  /* Rich Black (matches your logo) */
    --accent-color: #0056b3;     /* Action Blue */
    --light-bg: #F4F7F9;        /* Soft Professional Grey */
    --text-dark: #2D3436;        /* Easy-to-read Charcoal */
    --text-light: #636E72;       /* Subtle Metadata Text */
    --border-color: #DCDDE1;
    --white: #FFFFFF;
    
    --transition-speed: 0.3s;
    --animation-duration: 0.6s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif; /* Cleaner, more modern logistics font */
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* --- Keep your existing @keyframes (fadeInDown, etc.) here --- */

/* Updated Navbar for B&W Logo */
.custom-navbar {
    background: var(--white); /* Pure white background makes B&W logos look crisp */
    padding: 0.75rem 2rem;
    min-height: 80px;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Softer shadow for a "cooperative" feel */
    border-bottom: 1px solid var(--border-color);
    animation: fadeInDown var(--animation-duration) ease-out;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: transform var(--transition-speed) ease;
}

.navbar-brand:hover {
    transform: scale(1.02); /* Slight grow instead of slide for a more stable feel */
}

.logo {
    height: 55px; /* Perfect size for logistics headers */
    width: auto;
    object-fit: contain;
    /* Removed brightness filter to keep B&W logo sharp */
}

.brand-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary-color); /* Black text to match your logo */
    letter-spacing: -0.5px;
    display: none;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .brand-text {
        display: inline;
    }
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 18px !important;
    border-radius: 4px;
    position: relative;
    transition: all var(--transition-speed) ease;
}

/* Hover effect: Blue underline to signal "Cooperation/Movement" */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width var(--transition-speed) ease;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.nav-link:hover::after {
    width: calc(100% - 36px);
}

/* Search Bar - Professional & Subtle */
.search-input {
    border: 2px solid var(--border-color);
    background-color: var(--white);
    min-width: 200px; /* Give it enough space for long tracking numbers */
    font-family: 'Courier New', Courier, monospace; /* Optional: Looks like a digital receipt code */
}

.search-input:focus {
    border-color: var(--accent-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
    outline: none;
}
.search-input::placeholder {
    color: var(--text-light);
    font-style: italic;
    font-size: 0.9rem;
}

.btn-search {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-search:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

  /* HERO BANNER WITH MP4 VIDEO - Corporate Logistics Edition */

.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Updated to Navy/Black gradient */
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.8; /* Reduced slightly to let the navy background deepen the video tones */
}

/* Fallback background image */
.hero-bg-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero-fallback.jpg'); 
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Darker in the center to make white text stand out */
    background: radial-gradient(circle, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text-wrapper {
    max-width: 900px; /* Slightly wider for logistics headlines */
    text-align: center;
    padding: 40px 20px;
    animation: fadeInDown var(--animation-duration) ease-out;
}

.hero-title {
    font-size: clamp(36px, 8vw, 72px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    /* Stronger shadow to pop against moving video */
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.6);
    letter-spacing: -1.5px;
    animation: slideInLeft 0.8s ease-out 0.15s both;
}


.hero-subtitle {
    font-size: clamp(16px, 3vw, 20px);
    color: rgba(255, 255, 255, 0.9); /* Slightly off-white for better readability */
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.5);
    animation: slideInRight 0.8s ease-out 0.25s both;
    font-weight: 400;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1); /* Subtle glass effect */
    backdrop-filter: blur(8px);
    padding: 10px 20px;
    border-radius: 4px; /* Matches your professional square-ish theme */
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite 0.35s;
}

.badge-icon {
    font-size: 18px;
    color: var(--accent-color); /* The Blue accent pops here */
}

/*ABOUT SECTION*/

.about-section {
    padding: 20px 20px; /* Reduced from 120px to 60px */
    background: linear-gradient(180deg, var(--light-bg) 0%, #ffffff 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(6, 165, 23, 0.05), transparent);
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-header {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
    animation: fadeInUp var(--animation-duration) ease-out;
}

.section-label {
    display: inline-block;
    font-size: 10px;
    /* font-weight: 700; */
    letter-spacing: 2px;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 15px;
    padding: 8px 20px;
    background: rgba(6, 165, 23, 0.1);
    border-radius: 50px;
}

.section-title {
    font-size: 35px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-content {
    max-width: 800px;
    margin: 0 auto 80px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
    font-weight: 500;
}
/* SERVICE CARDS SECTION */

.service-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Hover Effect: The "Cooperative Blue" highlight */
.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 46, 93, 0.08);
}

.card-icon {
    font-size: 32px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.card-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-bullets {
    list-style: none;
    padding: 0;
}

.card-bullets li {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

/* Custom Checkmark for Bullets */
.card-bullets li::before {
    content: '\f00c'; /* FontAwesome check icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 12px;
}

/* Card Footer/Accent Line */
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.service-card:hover::after {
    width: 100%;
}
/* The "Ideal For" Box - Matching the clean corporate look */
.ideal-box {
    margin-top: 25px;
    margin-bottom: 25px;
    padding: 20px;
    background-color: var(--light-bg);
    border-left: 4px solid var(--primary-color); /* Navy accent to match your logo */
}

.ideal-box p {
    font-size: 16px;
    color: var(--secondary-color);
    margin: 0;
    font-style: italic;
}

.ideal-box strong {
    color: var(--primary-color);
}
/* CARGO SPECIALIZATION SECTION */

.cargo-section {
    padding: 100px 20px;
    background-color: var(--light-bg);
}

.cargo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.cargo-block {
    background: var(--white);
    padding: 35px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all var(--transition-speed) ease;
}

.cargo-block:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px rgba(0, 46, 93, 0.05);
}

.block-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--light-bg);
    padding-bottom: 15px;
}

.block-header i {
    font-size: 24px;
    color: var(--accent-color);
}

.block-header h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.cargo-list {
    list-style: none;
    padding: 0;
}

.cargo-list li {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.cargo-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Compliance Footer Styling */
.compliance-footer {
    margin-top: 50px;
    text-align: center;
    padding: 20px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 16px;
    border-radius: 4px;
}

.compliance-footer i {
    font-size: 20px;
    color: var(--accent-color);
}
/* PREMIUM AUTHORITY CARDS */

.authority-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.authority-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 8px; /* Slight roundness for a modern look */
    border: 1px solid rgba(0, 46, 93, 0.1); /* Subtle Navy border */
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Background Glow Effect on Hover */
.card-bg-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.03) 0%, transparent 70%);
    transition: all 0.6s ease;
    pointer-events: none;
}

.authority-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent-color);
    box-shadow: 0 30px 60px rgba(0, 46, 93, 0.12);
}

.authority-card:hover .card-bg-glow {
    top: -20%;
    left: -20%;
}

/* Icon Wrapper Styling */
.authority-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 24px;
    transition: all 0.3s ease;
}

.authority-card:hover .authority-icon-wrap {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.card-tag {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--accent-color);
    letter-spacing: 2px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.authority-name {
    font-size: 22px;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.authority-list {
    list-style: none;
    padding: 0;
}

.authority-list li {
    font-size: 15px;
    color: var(--text-light);
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Adding a tiny dot before each list item */
.authority-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.5;
}

.authority-list li:last-child {
    border-bottom: none;
}
/* READINESS BANNER - Cooperative Warning Style */

.readiness-banner {
    margin-top: 30px;
    margin-bottom: 30px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 25px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 4px;
    animation: fadeInUp 0.8s ease-out;
}

.banner-icon {
    font-size: 28px;
    color: var(--accent-color);
}

.readiness-banner p {
    margin: 0;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.readiness-banner strong {
    text-transform: uppercase;
    color: var(--accent-color);
    margin-right: 5px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .readiness-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
}
/* STRATEGIC ROADMAP STYLING */

.process-roadmap {
    position: relative;
    max-width: 900px;
    margin: 50px auto;
    padding-left: 30px;
}

/* The Connecting Line */
.process-roadmap::before {
    content: '';
    position: absolute;
    left: 45px;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--border-color);
    z-index: 0;
}

.step-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    z-index: 1;
    transition: all 0.3s ease;
}

.step-item:last-child {
    margin-bottom: 0;
}

/* The "Number" Circle */
.step-number {
    min-width: 40px;
    height: 40px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    margin-right: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 10px var(--white); /* Masks the connecting line */
}

/* Hover effect for the current step */
.step-item:hover .step-number {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.2);
}

.step-info {
    padding-top: 5px;
}

.step-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 700px;
}

/* Responsive Tweak for Mobile */
@media (max-width: 600px) {
    .process-roadmap::before {
        left: 25px;
    }
    .step-number {
        min-width: 30px;
        height: 30px;
        font-size: 12px;
        margin-right: 20px;
    }
    .step-title {
        font-size: 18px;
    }
}
/* BENEFITS RIBBON STYLING */

.benefits-ribbon {
    max-width: 1000px;
    margin: 40px auto;
    border-top: 1px solid var(--border-color);
}

.reason-row {
    display: flex;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
    transition: background-color var(--transition-speed) ease;
}

.reason-row:hover {
    background-color: var(--light-bg); /* Soft Steel Grey highlight */
}

.reason-icon-box {
    min-width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    border-right: 1px solid var(--border-color);
    margin-right: 30px;
}

.reason-text h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.reason-text p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
}

/* THE LEGAL PARTNER CALLOUT */

.legal-partnership-callout {
    margin-top: 50px;
    padding: 40px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    position: relative;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%); /* Sharp, geometric design */
}

.legal-partnership-callout p {
    font-size: 20px;
    margin: 0;
    letter-spacing: 0.5px;
}

.legal-partnership-callout strong {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .reason-row {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    .reason-icon-box {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
    }
    .legal-partnership-callout {
        clip-path: none; /* Reset for mobile readability */
    }
}

/* TARGET AUDIENCE HUB STYLING */

.target-hub {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.target-item {
    display: flex;
    align-items: center;
    padding: 25px;
    background: var(--white);
    border-left: 5px solid var(--border-color); /* Neutral starting point */
    transition: all var(--transition-speed) ease;
}

.target-item:hover {
    border-left-color: var(--accent-color); /* Switches to Cooperative Blue */
    background: var(--light-bg);
    transform: translateX(10px); /* Subtle "slide" effect */
}

/* The Hexagonal Icon Design */
.target-icon-hex {
    min-width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    margin-right: 25px;
    transition: transform 0.3s ease;
}

.target-item:hover .target-icon-hex {
    transform: rotate(360deg); /* Catchy rotation on hover */
    background: var(--accent-color);
}

.target-text h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.target-text p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Responsive Tweak for Small Screens */
@media (max-width: 768px) {
    .target-hub {
        grid-template-columns: 1fr;
    }
    
    .target-item {
        padding: 15px;
    }
    
    .target-icon-hex {
        min-width: 50px;
        height: 50px;
        font-size: 18px;
    }
}
/* RISK MANAGEMENT SECTION STYLING */

.risk-management-layout {
    max-width: 1100px;
    margin: 40px auto;
}

.risk-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.risk-point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    border-left: 2px solid var(--border-color);
    transition: all var(--transition-speed) ease;
}

.risk-point:hover {
    border-left-color: #e74c3c; /* A subtle alert red to signify "Risk" */
    background: rgba(231, 76, 60, 0.02);
}

.risk-icon {
    font-size: 20px;
    color: var(--text-light); /* Kept neutral initially */
}

.risk-point:hover .risk-icon {
    color: #e74c3c;
}

.risk-text strong {
    display: block;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.risk-text p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* THE RESOLUTION BANNER - The "Cooperative" Answer */

.resolution-banner {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Sublte geometric background for the banner */
.resolution-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 86, 179, 0.2), transparent);
}

.resolution-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.resolution-content i {
    font-size: 32px;
    color: var(--accent-color);
}

.resolution-content p {
    font-size: 20px;
    max-width: 700px;
    line-height: 1.6;
    margin: 0;
}

.resolution-content strong {
    color: var(--accent-color);
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .risk-list {
        grid-template-columns: 1fr;
    }
    .resolution-banner {
        padding: 30px 20px;
    }
    .resolution-content p {
        font-size: 18px;
    }
}
/* TRUST PARTNER CONTAINER */
.trust-wrapper {
    max-width: 1100px;
    margin: 60px auto;
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    color: var(--white);
    box-shadow: 0 30px 60px rgba(0, 46, 93, 0.2);
}

/* Background Decorative Element */
.trust-wrapper::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.trust-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.trust-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-color);
    margin-bottom: 25px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
}

.trust-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 50px;
    color: var(--white);
}

/* THE PROMISE SPLIT BOX */
.promise-split {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 50px;
    overflow: hidden;
}

.promise-side {
    flex: 1;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: background 0.3s ease;
}

.promise-side i {
    font-size: 28px;
    margin-bottom: 5px;
}

.promise-side p {
    font-size: 18px;
    margin: 0;
    line-height: 1.5;
}

/* Specific styling for Positive/Negative */
.promise-side.negative {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.promise-side.negative i { color: #ff6b6b; } /* Subtle red */
.promise-side.positive i { color: var(--accent-color); } /* Cooperative Blue */

.promise-side.positive strong {
    color: var(--accent-color);
    font-weight: 700;
}

/* FOOTER TEXT */
.market-footer {
    max-width: 800px;
    margin: 0 auto 40px;
}

.market-footer p {
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.market-footer strong {
    color: var(--white);
    border-bottom: 2px solid var(--accent-color);
}

/* SIGNATURE DETAIL */
.trust-signature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
}

.sig-line {
    width: 60px;
    height: 2px;
    background: var(--accent-color);
}

.trust-signature span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 850px) {
    .promise-split {
        flex-direction: column;
    }
    
    .promise-side.negative {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .trust-wrapper {
        padding: 60px 25px;
        margin: 40px 15px;
    }

    .market-footer p {
        font-size: 17px;
    }
}

/* MAIN FOOTER STYLING */
.main-footer {
    background-color: var(--secondary-color); /* Rich Black/Deep Navy */
    color: var(--white);
    padding: 80px 0 0;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

/* Brand Column */
.footer-logo {
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--accent-color);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 14px;
}

/* Social Icons */
.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-socials a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Column Titles */
.footer-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

/* Links & List Items */
.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact i {
    color: var(--accent-color);
    margin-top: 4px;
}

/* Bottom Bar */
.footer-bottom {
    margin-top: 60px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-template-columns: none; /* Reset grid for bottom bar */
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-socials {
        justify-content: center;
    }
    .footer-bottom .footer-container {
        flex-direction: column;
        gap: 15px;
    }
    .footer-contact li {
        justify-content: center;
    }
}
