:root {
    --navy-blue: #001f3f;
    --dark-blue: #000;
    --accent-gold: #c5a059;

    --white: #fff;
    --black: #000;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #c5a059 0%, #000 69%) !important;
    color: var(--white);
}

/* Remove focus outline and shadow */
.btn:focus,
.btn:active,
.btn:focus-visible,
.form-control:focus,
.form-select:focus,
.form-check-input:focus {
    outline: none !important;
    box-shadow: none !important;
}

.form-control,
.form-select {
    border-color: #dee2e6;
    /* default border */
}

.form-control:focus,
.form-select:focus {
    border-color: #dee2e6;
}

*:focus {
    outline: none !important;
}

/* Pagination links */
.page-link:focus,
.page-link:active,
.page-link:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

/* Also catch anchor focus globally (Bootstrap 5.3 focus-ring) */
a:focus,
a:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.form-check-input:checked {
    background-color: var(--navy-blue);
    border-color: var(--navy-blue);
}

.form-check-input:focus {
    border-color: var(--navy-blue);
    box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.25);
}

.pagination .page-link {
    color: var(--accent-gold);
}

.pagination .page-link:hover {
    color: var(--accent-gold);
}

.pagination .page-item.active .page-link {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #fff;
}

.pagination .page-link:focus {
    box-shadow: none;
}

/* Navbar */
.navbar {
    background-color: var(--dark-blue);
    padding: 1rem 0;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
}

.nav-link:hover {
    color: var(--accent-gold) !important;
}

.nav-link.active {
    color: var(--accent-gold) !important;
}

.iti {
    width: 100%;
}

.iti__country-list {
    z-index: 9999 !important;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Loader */
.page-loader {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid #e5e5e5;
    border-top-color: var(--navy-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 31, 63, 0.7), rgba(0, 31, 63, 0.7)),
        url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&q=80&w=1470&ixlib=rb-4.0.3') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    color: var(--white);
}

.split-image {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Product Card */
.product-card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-img-container {
    height: 200px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.product-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-navy {
    background-color: var(--dark-blue);
    color: var(--white);
    border: none;
}

.btn-navy:hover {
    background-color: var(--navy-blue);
    color: var(--white);
}

/* Footer */
footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 50px 0 20px;
}

.social-icons a {
    color: var(--white);
    font-size: 1.5rem;
}

/* Product Details */
.product-gallery img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.specs-table {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.inquiry-card {
    border: none;
    border-radius: 15px;
    background: var(--navy-blue);
    color: var(--white);
    position: sticky;
    top: 100px;
}

.btn-quote {
    background-color: var(--accent-gold);
    color: var(--black);
    font-weight: bold;
    border: none;
}

.btn-quote:hover {
    background-color: var(--accent-gold);
}

.breadcrumb-item a {
    color: var(--navy-blue);
    text-decoration: none;
}

/* Sidebar Filter */
.filter-section {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    position: sticky;
    top: 90px;
}

.filter-title {
    color: var(--accent-gold);
    font-weight: bold;
    border-bottom: 2px solid var(--navy-blue);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

/* About US Page*/
.about-header {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.8) 0%, rgba(0, 0, 0, 0.9) 69%),
        url('https://images.unsplash.com/photo-1521791136064-7986c2920216?q=80&w=2069');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    color: var(--white);
}

.mv-card {
    border: none;
    border-top: 5px solid var(--accent-gold);
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mv-card:hover {
    transform: translateY(-10px);
}

.stat-item {
    border: 1px solid var(--accent-gold);
}

.stat-item h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.process-dot {
    width: 20px;
    height: 20px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 15px;
}

/* Contact Page*/
.contact-header {
    /* background-color: var(--navy-blue);
    color: var(--white); */
    text-align: center;
}

.contact-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background: var(--white);
}

.info-box {
    background: var(--dark-blue);
    color: var(--white);
    border-radius: 15px;
    padding: 40px;
    height: 100%;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    color: var(--accent-gold);
}

.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.feature-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f1f1f1;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    /* Soft Gold Shadow */
    border-color: #d4af37;
    /* Gold Border on hover */
}

.icon-box i {
    background: linear-gradient(45deg, #d4af37, #f9f295);
    /* Gold Gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h4 {
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}
