/* PREMIUM BESPOKE THEME OVERRIDES */
:root {
    --premium-blue: #1430DA;
    --premium-white: #FFFFFF;
    --premium-dark: #000000;
}

body {
    font-family: 'Inter', sans-serif;
}

/* Override Headers to Outfit */
h1, h2, h3, h4, h5, h6, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6, .navbar-brand h2 {
    font-family: 'Outfit', sans-serif !important;
}

/* Navbar Hide Default Bootstrap if inside premium */
.premium-hidden-nav {
    display: none !important;
}

/* Hero Section */
.premium-hero {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: 100vh;
    background: var(--premium-blue);
    font-family: 'Outfit', sans-serif;
    color: var(--premium-white);
}

.hero-left {
    width: 30%;
    background: var(--premium-white);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

.tracker-circle {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 1px dashed rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--premium-dark);
}

.tracker-circle p {
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--premium-dark);
    margin-bottom: 10px;
    margin-top: 50px;
}

.ship-icon {
    width: 40px;
    height: 40px;
    background: var(--premium-dark);
    color: var(--premium-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hero-right {
    width: 70%;
    padding: 60px 80px;
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--premium-blue);
}

.massive-text {
    font-size: calc(3rem + 4vw);
    font-weight: 900;
    line-height: 1;
    color: var(--premium-white);
    margin-top: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    margin-top: 40px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease-in-out;
}

.hero-image-wrapper:hover img {
    transform: scale(1.05);
}

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    background: transparent;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-text-overlay p {
    font-size: 16px;
    font-weight: 400;
    color: var(--premium-white);
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    background: rgba(20, 48, 218, 0.6);
    padding: 15px;
    backdrop-filter: blur(10px);
    border-radius: 8px;
}

.btn-premium {
    background: #EAB308;
    color: var(--premium-dark);
    font-weight: 800;
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-premium:hover {
    background: var(--premium-white);
    transform: translateY(-3px);
}

.btn-premium i {
    margin-left: 10px;
    background: var(--premium-dark);
    color: #EAB308;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.btn-premium:hover i {
    color: var(--premium-white);
}

/* Asymmetric Services Block */
.premium-services-wrapper {
    background: var(--premium-blue);
    padding: 100px 80px;
    width: 100%;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.service-card-modern {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 40px;
    color: var(--premium-white);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.service-card-modern:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.5);
}

.service-card-modern h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--premium-white);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.service-card-modern img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    filter: grayscale(20%);
    transition: 0.5s;
}

.service-card-modern:hover img {
    filter: grayscale(0%);
}

.service-card-modern .arrow-btn {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--premium-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--premium-white);
    font-size: 20px;
    transition: 0.3s;
}

.service-card-modern:hover .arrow-btn {
    background: var(--premium-white);
    color: var(--premium-blue);
    transform: rotate(-45deg);
}

/* Split "Why Choose Us" Block */
.split-facts-block {
    display: flex;
    width: 100%;
    min-height: 60vh;
}

.facts-left {
    width: 30%;
    background: var(--premium-blue);
    color: var(--premium-white);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.facts-left h4 {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.facts-left h2 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--premium-white);
}

.facts-right {
    width: 70%;
    background: var(--premium-white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    border-left: 1px solid #E5E7EB;
}

.fact-box {
    padding: 60px;
    border-bottom: 1px solid #E5E7EB;
    border-right: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
}

.fact-box .number {
    font-size: 2.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    color: #E5E7EB;
    margin-bottom: 20px;
}

.fact-box h4 {
    font-weight: 800;
    color: var(--premium-dark);
    margin-bottom: 15px;
}

.fact-box p {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.6;
}

/* Subpage Hero */
.premium-sub-hero {
    width: 100%;
    min-height: 40vh;
    background: var(--premium-blue);
    font-family: 'Outfit', sans-serif;
    color: var(--premium-white);
    padding: 0 80px;
    display: flex;
    flex-direction: column;
}

.premium-sub-hero .page-title {
    font-size: calc(3rem + 2vw);
    font-weight: 900;
    line-height: 1;
    color: var(--premium-white);
    margin-top: auto;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

@media (max-width: 991px) {
    .premium-sub-hero {
        padding: 0 20px;
    }
    .hero-left, .hero-right, .facts-left, .facts-right {
        width: 100%;
    }
    .hero-text-overlay {
        width: 90%;
        bottom: 10px;
        right: 5%;
    }
    .massive-text {
        font-size: 3.5rem;
    }
    .services-grid-modern {
        grid-template-columns: 1fr;
    }
    .facts-right {
        grid-template-columns: 1fr;
    }
    .hero-right .d-flex.w-100 {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start !important;
    }
}
