@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --navy-dark: #0A192F;
    --navy-main: #112240;
    --gold: #C5A880;
    --industrial-grey: #F4F7F9;
    --border-color: #D1D5DB;
    --text-muted: #6B7280;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--navy-dark);
    background-color: var(--white);
    line-height: 1.7; /* Improved vertical rhythm */
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
}

/* Strict Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--navy-dark);
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    p { text-align: left; }
}

.lead {
    font-weight: 500;
    color: var(--navy-main);
    line-height: 1.8;
}

/* Constrain Paragraph Widths for Readability */
.content-block {
    max-width: 800px;
}

/* Universal Sharp Edges */
* {
    border-radius: 0 !important;
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    border-left: 8px solid var(--gold);
    padding-left: 25px;
    display: inline-block;
}

.bg-industrial {
    background-color: var(--industrial-grey);
}

/* Navbar */
.navbar-brand img {
    height: 90px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.navbar {
    background-color: var(--navy-dark);
    padding: 1rem 0;
    border-bottom: 4px solid var(--gold);
}


.nav-link {
    color: var(--white) !important;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin: 0 15px;
    transition: all 0.2s;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-color: var(--navy-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    padding: 100px 0;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-container iframe,
.hero-html5-video {
    width: 100vw;
    height: 56.25vw; /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 Aspect Ratio */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.6));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
}

.hero-section h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin: 0 auto 30px auto;
    max-width: 900px;
}

.hero-section p {
    font-size: 1.3rem;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto 50px auto;
    font-weight: 500;
    text-align: center;
}

/* Cards */
.card {
    border: 1px solid var(--border-color);
    box-shadow: none;
    background: var(--white);
    padding: 3rem;
    height: 100%;
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--gold);
    display: inline-block;
    padding-bottom: 5px;
}

/* Management Directory */
.directory-card {
    border: 1px solid var(--border-color);
    background: var(--white);
    margin-bottom: 40px;
}

.directory-header {
    background: var(--navy-dark);
    color: var(--white);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.directory-content {
    padding: 40px;
}

.leader-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
}

/* Buttons */
.btn-gold {
    background-color: var(--gold);
    color: var(--navy-dark);
    font-weight: 800;
    padding: 16px 45px;
    font-size: 0.9rem;
    border: none;
    transition: all 0.3s;
}

.btn-gold:hover {
    background-color: var(--navy-dark);
    color: var(--gold);
}

/* Brands Grid */
.brand-grid-item {
    border: 1px solid var(--border-color);
    padding: 20px;
    text-align: left;
    font-weight: 700;
    font-size: 0.85rem;
    background: var(--white);
    display: flex;
    align-items: center;
    transition: all 0.2s;
}

.brand-grid-item:hover {
    border-color: var(--gold);
    background-color: var(--industrial-grey);
}

.brand-grid-item::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--gold);
    margin-right: 15px;
    flex-shrink: 0;
}

/* High-Standard Corporate Layout */
.welcome-section {
    background-color: var(--white);
}

.welcome-section h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 35px;
}

.welcome-section p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    color: var(--navy-dark);
}

.welcome-img-container {
    border: 1px solid var(--border-color);
    padding: 10px;
    background: var(--industrial-grey);
}

/* Premium Typography & Components */
.premium-dropcap {
    float: left;
    font-size: 4.5rem;
    line-height: 0.8;
    padding-top: 4px;
    padding-right: 15px;
    padding-left: 3px;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-weight: 800;
}

.business-performance-box {
    background: linear-gradient(145deg, #ffffff, #f0f4f8);
    border-left: 6px solid var(--gold);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(10, 25, 47, 0.05);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.business-performance-box::after {
    content: '\f201'; /* FontAwesome Chart Line */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 10rem;
    color: rgba(197, 168, 128, 0.05);
    pointer-events: none;
}

.stats-widget {
    background: var(--navy-dark);
    color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(10, 25, 47, 0.15);
}

.stats-widget-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.stats-widget-item:hover {
    transform: translateX(10px);
}

.stats-widget-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.stats-label {
    opacity: 0.7;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.stats-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.text-justify-remove {
    text-align: left !important;
}

/* Premium Leadership Section */
.section-header-premium {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 30px;
    color: var(--navy-dark);
}

.section-header-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--gold);
}

.executive-card-premium {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(10, 25, 47, 0.08);
    overflow: hidden;
    border: 1px solid rgba(197, 168, 128, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.executive-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(10, 25, 47, 0.12);
}

.executive-portrait-elegant {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 10px 25px rgba(10, 25, 47, 0.12);
    margin: 1.5rem auto;
}

.executive-card-constrained {
    max-width: 860px;
    margin: 0 auto;
}

.team-card-vertical {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(10, 25, 47, 0.07);
    border: 1px solid rgba(197, 168, 128, 0.18);
    padding: 1.75rem 1.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.team-card-vertical:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(197, 168, 128, 0.15);
    border-color: var(--gold);
}

.team-divider {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 0.75rem auto 1rem;
}

.executive-bio-premium {
    padding: 3rem;
}

.avatar-pull-up-card {
    background: var(--white);
    border-radius: 12px;
    padding: 3rem 2rem 2rem;
    margin-top: 60px;
    box-shadow: 0 15px 35px rgba(10, 25, 47, 0.06);
    border: 1px solid rgba(10, 25, 47, 0.05);
    position: relative;
    transition: all 0.3s ease;
    height: calc(100% - 60px);
}

.avatar-pull-up-card:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(197, 168, 128, 0.15);
}

.avatar-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--white);
    box-shadow: 0 10px 20px rgba(10, 25, 47, 0.1);
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
}

/* Pro Team Layout */
.pro-team-card {
    background: var(--white);
    border-radius: 8px;
    padding: 1.75rem;
    box-shadow: 0 4px 15px rgba(10, 25, 47, 0.04);
    border: 1px solid rgba(197, 168, 128, 0.15);
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
}

.pro-team-card:hover {
    box-shadow: 0 8px 25px rgba(10, 25, 47, 0.08);
    transform: translateY(-2px);
}

.pro-team-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 8px 20px rgba(10, 25, 47, 0.1);
}

.pro-team-bio {
    padding-left: 2rem;
}

.pro-team-img-small {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(10, 25, 47, 0.1);
}

.bg-gold {
    background-color: var(--gold) !important;
}

/* ===== SERVICES PAGE ===== */
.service-feature-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(10, 25, 47, 0.06);
    border: 1px solid rgba(197, 168, 128, 0.15);
    transition: all 0.3s ease;
}

.service-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(197, 168, 128, 0.15);
    border-color: var(--gold);
}

.service-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-dark), #1a3560);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 20px rgba(10, 25, 47, 0.15);
}

.service-icon-wrap i {
    font-size: 1.5rem;
    color: var(--gold);
}

.services-quote-banner {
    background: linear-gradient(135deg, #f8f9fc, #eef1f7);
    border-left: 5px solid var(--gold);
    border-radius: 8px;
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.strength-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem 1.75rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(10, 25, 47, 0.05);
    border: 1px solid rgba(10, 25, 47, 0.06);
    transition: all 0.3s ease;
}

.strength-card:hover {
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(197, 168, 128, 0.12);
}

.strength-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #d4a553);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.strength-icon i {
    font-size: 1.4rem;
    color: var(--white);
}

.warehouse-feature-box {
    background: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(197, 168, 128, 0.15);
    box-shadow: 0 5px 15px rgba(10, 25, 47, 0.04);
    transition: all 0.3s ease;
}

.warehouse-feature-box:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

/* ===== SERVICES IMAGE GRID ===== */
.services-img-grid {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.services-img-main,
.services-img-small {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.services-img-main {
    height: 280px;
    box-shadow: 0 20px 50px rgba(10, 25, 47, 0.18);
    border-left: 4px solid var(--gold);
}

.services-img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.services-img-small {
    height: 170px;
    box-shadow: 0 10px 30px rgba(10, 25, 47, 0.12);
}

.services-grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
}

.services-img-main:hover .services-grid-img,
.services-img-small:hover .services-grid-img {
    transform: scale(1.07);
}

/* Elegant dark label overlay on hover */
.services-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.65) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1rem 1.2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.services-img-main:hover .services-img-overlay,
.services-img-small:hover .services-img-overlay {
    opacity: 1;
}

.services-img-overlay span {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Floating gold badge */
.services-img-badge {
    position: absolute;
    bottom: -18px;
    right: -18px;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--gold), #b8942a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(197, 168, 128, 0.45);
    z-index: 10;
    border: 3px solid var(--white);
}

@media (max-width: 991px) {
    .services-img-badge { display: none; }
    .services-img-main { height: 220px; }
    .services-img-small { height: 130px; }
}


/* ===== BRANDS PAGE ===== */

/* Brand Grid Layout - Ultra Premium */
.brand-image-card {
    background: var(--white);
    border-radius: 4px; /* More elegant, less rounded */
    box-shadow: 0 15px 45px rgba(10, 25, 47, 0.08); /* Softer, wider shadow */
    border: none; /* Remove border for a cleaner float */
    overflow: hidden;
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.brand-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(10, 25, 47, 0.12);
}

.brand-logo-container {
    height: 220px; /* Taller for more white space */
    background-color: var(--white); /* Pure white background */
    border-bottom: 1px solid rgba(0, 0, 0, 0.03); /* Extremely subtle separator */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 3rem;
}

.brand-logo-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0.9;
}

.brand-image-card:hover .brand-logo-img {
    transform: scale(1.08);
    opacity: 1;
}

.brand-card-content {
    padding: 2.5rem;
    text-align: center; /* Center align for elegance */
}

.brand-card-title {
    font-size: 1.1rem;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.brand-pill-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.brand-pill {
    background: transparent;
    color: var(--navy-light);
    padding: 6px 14px;
    border-radius: 2px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(10, 25, 47, 0.1);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.brand-pill:hover {
    background: var(--navy-dark);
    color: var(--gold);
    border-color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 25, 47, 0.1);
}

.brands-cta-banner {
    background: linear-gradient(135deg, var(--navy-dark) 0%, #1a3560 100%);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 3rem auto 0;
    max-width: 860px;
    position: relative;
    overflow: hidden;
}

.brands-cta-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="30" cy="30" r="20" fill="none" stroke="rgba(197,168,128,0.05)" stroke-width="1"/></svg>') repeat;
    pointer-events: none;
}

/* ===== CONTACT PAGE ===== */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid rgba(197, 168, 128, 0.15);
    box-shadow: 0 5px 15px rgba(10, 25, 47, 0.04);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    border-color: var(--gold);
    transform: translateX(5px);
}

.contact-icon-box {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 10px;
    background: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon-box i {
    color: var(--gold);
    font-size: 1.1rem;
}

.contact-form-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(10, 25, 47, 0.08);
    border: 1px solid rgba(197, 168, 128, 0.12);
}

.contact-form-card .form-control {
    border: 1px solid #e5e9f0;
    border-radius: 8px;
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
    transition: border-color 0.3s;
    background: #f9fafc;
}

.contact-form-card .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.1);
    background: var(--white);
}

.availability-badge {
    background: linear-gradient(135deg, var(--navy-dark), #1a3560);
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 4px solid var(--gold);
    color: var(--white);
}

/* Footer */
footer {
    background-color: var(--navy-dark);
    color: var(--white);
    padding: 80px 0 30px;
}

footer h5 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 800;
}

/* Footer Navigation Links — white, no underline, gold on hover */
footer a,
footer .footer-nav-link {
    color: var(--white) !important;
    text-decoration: none !important;
    opacity: 0.8;
    transition: opacity 0.2s ease, color 0.2s ease;
    font-size: 0.9rem;
}

footer a:hover,
footer .footer-nav-link:hover {
    color: var(--gold) !important;
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 50px;
    padding-top: 25px;
}

@media (max-width: 992px) {
    .hero-section h1 { font-size: 2.8rem; }
    section { padding: 80px 0; }
}

