/* MJ Tanko Investments - Namibia Style Sheet */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --charcoal: #2B2B2B;
    --gold: #D4AF37;
    --navy: #0B1F3B;
    --navy-light: #1a2f4f;
    --gold-light: #E6C158;
    --light: #f8f9fa;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --namibia-blue: #003580;
    --namibia-green: #009639;
    --namibia-red: #D21034;
    --namibia-white: #FFFFFF;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gray);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--navy);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: var(--navy-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(11, 31, 59, 0.2);
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(11, 31, 59, 0.3);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--gold);
    color: var(--charcoal);
}

.btn-secondary:hover {
    background: var(--gold-light);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: white;
    box-shadow: 0 15px 30px rgba(11, 31, 59, 0.2);
}

.btn-outline:focus {
    box-shadow: 0 0 0 3px rgba(11, 31, 59, 0.2);
}

.btn-namibia {
    background: linear-gradient(135deg, var(--namibia-blue) 0%, var(--namibia-green) 100%);
    color: white;
    border: 2px solid var(--namibia-blue);
}

.btn-namibia:hover {
    background: linear-gradient(135deg, var(--namibia-green) 0%, var(--namibia-blue) 100%);
    transform: translateY(-2px);
}

/* Navigation - STICKY & ENHANCED */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    margin-right: auto;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.nav-links-container {
    display: flex;
    justify-content: center;
    flex: 1;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding-bottom: 5px;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover:after {
    width: 100%;
}

.nav-cta {
    background: var(--gold);
    color: var(--charcoal) !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--gold-light);
}

.nav-cta:after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--navy);
    margin-left: auto;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: var(--shadow);
    border-radius: 8px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    border-top: 3px solid var(--gold);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: var(--charcoal);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-content a:hover {
    background: var(--light-gray);
    color: var(--navy);
    padding-left: 25px;
}

/* Hero Section - NAMIBIA */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--namibia-blue) 0%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.hero h1, .hero p {
    color: white;
}

.hero p.lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-bg {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background: var(--gold);
    opacity: 0.05;
    border-radius: 0 0 0 100px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.hero-location i {
    color: var(--gold);
}

/* Section Styles */
.section {
    padding: 60px 0;
}

#service-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
}

.bg-light {
    background-color: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    color: var(--navy);
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold);
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 1rem auto 0;
}

/* Cards */
.card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border-top: 4px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-top-color: var(--navy);
}

.card:hover:before {
    opacity: 1;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--gold);
    font-size: 1.8rem;
}

/* Grid System */
.grid {
    display: grid;
    gap: 4rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.align-center {
    align-items: center;
}

/* Coverage Grid for Services */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.coverage-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border-top: 4px solid var(--gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.coverage-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-top-color: var(--navy);
}

.coverage-item i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.coverage-item h4 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.coverage-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* NAMIBIA Highlights */
.namibia-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--gold);
}

.highlight i {
    color: var(--gold);
}

.company-highlights {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--navy);
    margin-top: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.highlight-item i {
    color: var(--gold);
    width: 20px;
}

.image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
}

.responsive-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.image-caption {
    background: rgba(11, 31, 59, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0 0 12px 12px;
    text-align: center;
    font-size: 0.9rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.image-caption i {
    margin-right: 0.5rem;
    color: var(--gold);
}

.placeholder-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 31, 59, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: var(--transition);
}

.image-container:hover .placeholder-overlay {
    opacity: 1;
}

.placeholder-overlay i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

/* Footer - NAMIBIA */
.footer {
    background: var(--charcoal);
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3, .footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-col h3 {
    color: var(--gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-location {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: 1rem;
}

.footer-location p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-location i {
    color: var(--gold);
    width: 16px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

/* Page Header */
.page-header {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    text-align: center;
}

.service-card .card-icon {
    margin-left: auto;
    margin-right: auto;
}

/* Capacity Items */
.capacity-item {
    padding: 2rem;
    text-align: center;
}

.capacity-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--gold);
    font-size: 2rem;
}

/* Benefits */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-content h3 {
    margin-bottom: 0.5rem;
    color: var(--navy);
}

/* Sectors */
.sectors-grid {
    text-align: center;
}

.sector-item {
    padding: 1.5rem;
    transition: var(--transition);
}

.sector-item:hover {
    transform: translateY(-5px);
}

.sector-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--gold);
    font-size: 1.8rem;
}

.sector-item h4 {
    font-size: 1.1rem;
    color: var(--navy);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Values */
.value-card {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--gold);
    font-size: 2rem;
}

.value-card h3 {
    color: var(--navy);
}

/* Reach Cards */
.reach-card {
    text-align: center;
    padding: 2rem;
}

.reach-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.reach-card h3 {
    color: var(--navy);
}

/* Commitment */
.commitment-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.commitment-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.commitment-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.8rem;
    flex-shrink: 0;
}

.commitment-content h3 {
    margin-bottom: 0.5rem;
    color: var(--navy);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--navy);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Contact Info */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.contact-info-card {
    text-align: center;
    padding: 2rem;
    background: var(--light);
    border-radius: 12px;
    transition: var(--transition);
    border-top: 4px solid var(--gold);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: var(--navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.contact-info-card h3 {
    color: var(--navy);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    background: white;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
}

.product-image {
    height: 200px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    background: linear-gradient(135deg, rgba(11, 31, 59, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
}

.product-content {
    padding: 1.5rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.product-categories {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* Downloads */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.download-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--gold);
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.download-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--gold);
    font-size: 1.8rem;
}

.download-card h3 {
    color: var(--navy);
}

/* Projects */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--gold);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.project-image {
    height: 200px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    background: linear-gradient(135deg, rgba(11, 31, 59, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
}

.project-content {
    padding: 1.5rem;
}

.project-details p {
    margin-bottom: 0.5rem;
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--charcoal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    color: var(--navy);
}

/* Certifications */
.certification-item {
    text-align: center;
    padding: 1.5rem;
}

.certification-icon {
    color: var(--gold);
    margin-bottom: 1rem;
}

.certification-item h4 {
    color: var(--navy);
}

/* Resources */
.resource-item {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--gold);
}

.resource-item h3 {
    color: var(--navy);
    display: flex;
    align-items: center;
}

.mr-2 {
    margin-right: 0.5rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.lead {
    font-size: 1.25rem;
    color: var(--navy);
}

/* Map Container */
.map-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 2rem;
}

.map-info-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-width: 300px;
    border-left: 4px solid var(--gold);
}

.map-info-card h4 {
    color: var(--navy);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-info-card p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray);
}

.map-info-card i {
    color: var(--gold);
    width: 16px;
}

/* Namibia Flag Colors for Special Elements */
.namibia-border {
    border: 3px solid;
    border-image: linear-gradient(90deg, var(--namibia-blue) 0%, var(--namibia-green) 33%, var(--namibia-white) 33%, var(--namibia-white) 66%, var(--namibia-red) 66%, var(--namibia-red) 100%) 1;
}

/* Error states */
.error {
    border-color: #dc3545 !important;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.form-message-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Color overrides for specific sections */
.hero .btn-outline {
    border-color: white;
    color: white;
}

.hero .btn-outline:hover {
    background: white;
    color: var(--navy);
}

.cta-section .btn-outline {
    border-color: white;
    color: white;
}

.cta-section .btn-outline:hover {
    background: white;
    color: var(--navy);
}

.cta-section .btn-secondary {
    background: var(--gold);
    color: var(--charcoal);
}

.cta-section .btn-secondary:hover {
    background: var(--gold-light);
    color: var(--charcoal);
}

/* Image Placeholder */
.image-placeholder {
    background: linear-gradient(135deg, rgba(11, 31, 59, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
}

/* Active states for filtering */
.product-categories .btn.active {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}
/* Logo Size and Positioning - 90px Height */
.logo {
    margin-right: auto;
    padding-left: 40px; /* Creates space from left edge */
    position: relative;
    left: 20px; /* Adjusts position relative to menu */
}

.logo-img {
    height: 90px; /* Increased to 90px */
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Logo text enhancement for larger logo */
.logo span {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    margin-left: 8px;
}

/* Mobile menu button adjustment */
.mobile-menu-btn {
    margin-left: 20px;
    margin-right: 20px;
}

/* Responsive design */
@media (max-width: 1200px) {
    .logo {
        padding-left: 30px;
        left: 15px;
    }
    
    .logo-img {
        height: 80px; /* Slightly smaller on medium screens */
    }
    
    .logo span {
        font-size: 1.7rem;
    }
    
    .nav-links-container {
        margin-left: -80px;
    }
}

@media (max-width: 992px) {
    .logo {
        padding-left: 20px;
        left: 10px;
    }
    
    .logo-img {
        height: 70px;
    }
    
    .logo span {
        font-size: 1.6rem;
    }
    
    .nav-links-container {
        margin-left: 0;
    }
    
    .navbar {
        min-height: 100px;
        padding: 15px 0;
    }
}

@media (max-width: 768px) {
    .logo {
        padding-left: 10px;
        left: 0;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .logo span {
        font-size: 1.5rem;
    }
    
    .navbar {
        min-height: 90px;
        padding: 10px 0;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .page-header {
        padding: 150px 0 60px;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 50px;
    }
    
    .logo span {
        font-size: 1.3rem;
    }
    
    .navbar {
        min-height: 80px;
    }
}

/* Fix for dropdown alignment with larger navbar */
.dropdown-content {
    top: 100%;
    margin-top: 10px; /* Increased from default */
}

/* Ensure content doesn't overlap with larger navbar */
body {
    padding-top: 110px; /* Add padding to body to prevent content from hiding behind navbar */
}

@media (max-width: 992px) {
    body {
        padding-top: 100px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 90px;
    }
}

/* Adjust section spacing */
.section:first-of-type {
    margin-top: 0;
}


/* Ensure logo container doesn't overflow on mobile */
@media (max-width: 480px) {
    .logo {
        padding-left: 5px;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .logo span {
        font-size: 1.2rem;
    }
}

<!-- Add this CSS to your style.css -->
<style>
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.bg-slide.active {
    opacity: 1;
}

.bg-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 53, 128, 0.85) 0%, rgba(11, 31, 59, 0.9) 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
}

/* ===== FORM STYLING ===== */
input, textarea, select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: #fafafa;
}

input.error, textarea.error, select.error {
    border-color: #e74c3c;
    background: #fadbd8;
}

input.error:focus, textarea.error:focus, select.error:focus {
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--charcoal);
}

.form-group {
    margin-bottom: 1.5rem;
}

.error-message {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 6px;
    display: none;
    font-weight: 500;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #28a745;
    margin-bottom: 1.5rem;
    display: none;
}

.success-message.show {
    display: block;
    animation: slideInUp 0.3s ease;
}

.form-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ===== BREADCRUMB NAVIGATION ===== */
.breadcrumb {
    background: var(--light);
    padding: 15px 20px;
    margin-bottom: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb-item a {
    color: var(--navy);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.breadcrumb-separator {
    color: #ddd;
    font-weight: bold;
}

.breadcrumb-item.active {
    color: var(--charcoal);
    font-weight: 600;
}

/* ===== ENHANCED SPACING ===== */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* ===== TRUST BADGES ===== */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.badge {
    text-align: center;
    padding: 1rem;
}

.badge-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.badge-text {
    font-weight: 600;
    color: var(--charcoal);
    font-size: 0.9rem;
}
</style>
/* ============================================
   VIDEO STYLES
   ============================================ */

/* Video Container */
.video-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    background: #000;
}

.responsive-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Video Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.video-overlay:hover {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
}

.play-button {
    width: 70px;
    height: 70px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--navy);
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.play-button:hover {
    transform: scale(1.1);
    background: var(--gold-light);
}

.video-caption {
    background: rgba(11, 31, 59, 0.85);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.95rem;
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    backdrop-filter: blur(5px);
}

.video-caption i {
    margin-right: 8px;
    color: var(--gold);
}

/* Video Background Container */
.video-background-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 53, 128, 0.7) 0%, rgba(11, 31, 59, 0.8) 100%);
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-content-overlay h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

.video-content-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.video-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.stat-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

.stat-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Video Embed Container */
.video-embed-container {
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    position: relative;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Video Controls Customization */
video::-webkit-media-controls-panel {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

video::-webkit-media-controls-play-button {
    background-color: var(--gold);
    border-radius: 50%;
}

video::-webkit-media-controls-current-time-display,
video::-webkit-media-controls-time-remaining-display {
    color: white;
}

/* Video Hover Effects */
.video-container:hover .play-button {
    animation: pulse 1.5s infinite;
}

/* Responsive Video Styles */
@media (max-width: 768px) {
    .video-container,
    .video-background-container,
    .video-embed-container {
        height: 300px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .video-content-overlay {
        padding: 25px;
    }
    
    .video-content-overlay h3 {
        font-size: 1.5rem;
    }
    
    .video-stats {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .video-container,
    .video-background-container,
    .video-embed-container {
        height: 250px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .video-caption {
        font-size: 0.85rem;
        padding: 10px 15px;
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
    
    .video-content-overlay {
        padding: 20px;
    }
    
    .video-content-overlay h3 {
        font-size: 1.3rem;
    }
}

/* Video Loading State */
.video-loading {
    background: linear-gradient(135deg, rgba(11, 31, 59, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
}

.video-loading::after {
    content: 'Loading video...';
    font-size: 0.9rem;
}