/* Qatar e-Visa CSS Styles */
/* Kolory: Primary #7E1935, Secondary #FCCA1D, Font: Montserrat */

:root {
    --primary-color: #7E1935;
    --secondary-color: #FCCA1D;
    --font-family: 'Montserrat', sans-serif;
    --light-bg: #f8f9fa;
    --dark-bg: #343a40;
    --white: #ffffff;
    --black: #000000;
    --text-muted: #6c757d;
}

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Typography */
h1 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-weight: 400;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

h5 {
    font-weight: 300;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 16px;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
}

/* Top Bar */
.top-bar {
    background-color: var(--light-bg);
    padding: 15px 0;
    border-bottom: 1px solid #dee2e6;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    max-width: 300px;
    max-height: 120px;
    height: auto;
    width: auto;
}

.logo-link {
    text-decoration: none;
}

.contact-info {
    font-size: 14px;
}

.contact-item {
    margin-bottom: 5px;
    color: var(--text-muted);
}

.contact-item i {
    color: var(--primary-color);
}

.contact-hours {
    font-size: 12px;
    color: var(--text-muted);
}

/* Main Navigation */
.main-navigation {
    background-color: var(--primary-color) !important;
    min-height: 60px;
    -webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 10000;
    position: relative;
}

.main-navigation .navbar-nav .nav-link,
.main-navigation .navbar-nav .dropdown-toggle {
    color: #ffffff !important;
    font-weight: 500;
    padding: 15px 20px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.main-navigation .navbar-nav .nav-link:hover,
.main-navigation .navbar-nav .dropdown-toggle:hover {
    background-color: rgba(255,255,255,0.1);
    color: var(--secondary-color) !important;
}

/* Force white color ONLY for main navbar links, not dropdown items */
.main-navigation .navbar-nav > li > a {
    color: #ffffff !important;
}

.main-navigation .navbar-nav > li > a:hover {
    color: var(--secondary-color) !important;
}

.navbar-toggler {
    border-color: rgba(255,255,255,0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mega Menu */
.mega-dropdown {
    position: static;
}

/* Disable hover on touch devices */
@media (hover: none) and (pointer: coarse) {
    .mega-dropdown:hover .mega-menu {
        display: flex !important;
    }
}

.mega-menu {
    position: fixed;
    left: 50%;
    /* Cross-browser transform support */
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 90vw;
    max-width: 1140px;
    background-color: var(--white);
    border: none;
    /* Cross-browser border-radius support */
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    /* Cross-browser box-shadow support */
    -webkit-box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    -moz-box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 30px;
    margin-top: 0;
    z-index: 9999;
    display: none;
}

.mega-menu.show {
    display: block !important;
}

/* Ensure dropdown menus work properly */
.dropdown-menu {
    z-index: 9999;
}

.navbar-nav .dropdown-menu {
    border: none;
    -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.mega-menu .dropdown-header {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--secondary-color);
}

.mega-menu .dropdown-item {
    padding: 8px 0;
    color: #333;
    font-size: 14px;
    border: none;
    transition: all 0.3s ease;
}

.mega-menu .dropdown-item:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
    padding-left: 10px;
}
/* Popular Countries Menu Styles */
.popular-destinations-header {
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.region-header {
    color: var(--primary-color) !important;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popular-country {
    padding: 6px 0 !important;
    color: #333 !important;
    font-size: 14px;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.popular-country:hover {
    background-color: var(--light-bg) !important;
    color: var(--primary-color) !important;
    padding-left: 15px !important;
    transform: translateX(5px);
}

.popular-country i {
    color: var(--primary-color);
    font-size: 12px;
    width: 16px;
}

.view-all-countries {
    padding: 10px 0 !important;
    color: var(--primary-color) !important;
    font-weight: 600;
    font-size: 14px;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.view-all-countries:hover {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    padding-left: 15px !important;
    border-radius: 4px;
}

.view-all-countries i {
    color: inherit;
    font-size: 12px;
    width: 16px;
}

/* Centered View All Countries Button */
.view-all-countries-centered {
    padding: 12px 24px !important;
    color: var(--primary-color) !important;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: transparent;
    margin: 0 auto;
    min-width: 250px;
    max-width: 100%;
}

.view-all-countries-centered:hover {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(126, 25, 53, 0.3);
    border-color: var(--primary-color);
}

.view-all-countries-centered i {
    color: inherit;
    font-size: 14px;
    width: 18px;
    margin-right: 8px;
}

/* Responsive adjustments for centered button */
@media (max-width: 768px) {
    .view-all-countries-centered {
        min-width: 200px;
        font-size: 14px;
        padding: 10px 20px !important;
    }
}

@media (max-width: 576px) {
    .view-all-countries-centered {
        min-width: 180px;
        font-size: 13px;
        padding: 8px 16px !important;
    }
    
    .view-all-countries-centered i {
        font-size: 12px;
        width: 16px;
    }
}

/* Regular Dropdown */
.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.dropdown-item {
    padding: 10px 20px;
    transition: all 0.3s ease;
    color: #333;
}

.dropdown-item:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

/* Buttons */
.btn {
    font-family: var(--font-family);
    font-weight: 500;
    border-radius: 6px;
    padding: 12px 24px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border-color: #721730 !important;
 
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #6a1429;
    border-color: #6a1429;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-apply {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: color-contrast(var(--secondary-color));
    font-weight: 600;
}


/* Keep top-bar button smaller */
.top-bar .btn-apply {
    /* Reduce top-bar button size by 30% */
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
    transform: scale(0.7);
}

.btn-apply:hover {
    background-color: #e6b519;
    border-color: #e6b519;
    -webkit-box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Hero button hover with normal scale */
.hero-buttons .btn-apply:hover {
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
}

/* Top-bar button hover with smaller scale */
.top-bar .btn-apply:hover {
    -webkit-transform: scale(0.7) translateY(-2px);
    -moz-transform: scale(0.7) translateY(-2px);
    -ms-transform: scale(0.7) translateY(-2px);
    -o-transform: scale(0.7) translateY(-2px);
    transform: scale(0.7) translateY(-2px);
}

.btn-outline-light {
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Pulse Animation */
.pulse-button {
    -webkit-animation: pulse 2s infinite;
    -moz-animation: pulse 2s infinite;
    -ms-animation: pulse 2s infinite;
    -o-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(252, 202, 29, 0.7);
        box-shadow: 0 0 0 0 rgba(252, 202, 29, 0.7);
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(252, 202, 29, 0);
        box-shadow: 0 0 0 10px rgba(252, 202, 29, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(252, 202, 29, 0);
        box-shadow: 0 0 0 0 rgba(252, 202, 29, 0);
    }
}

@-moz-keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(252, 202, 29, 0.7);
        box-shadow: 0 0 0 0 rgba(252, 202, 29, 0.7);
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(252, 202, 29, 0);
        box-shadow: 0 0 0 10px rgba(252, 202, 29, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(252, 202, 29, 0);
        box-shadow: 0 0 0 0 rgba(252, 202, 29, 0);
    }
}

@keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(252, 202, 29, 0.7);
        -moz-box-shadow: 0 0 0 0 rgba(252, 202, 29, 0.7);
        box-shadow: 0 0 0 0 rgba(252, 202, 29, 0.7);
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(252, 202, 29, 0);
        -moz-box-shadow: 0 0 0 10px rgba(252, 202, 29, 0);
        box-shadow: 0 0 0 10px rgba(252, 202, 29, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(252, 202, 29, 0);
        -moz-box-shadow: 0 0 0 0 rgba(252, 202, 29, 0);
        box-shadow: 0 0 0 0 rgba(252, 202, 29, 0);
    }
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 350px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-buttons .btn {
    margin: 0 10px 10px 0;
}

@media (max-width: 768px) {
    .hero-buttons .btn {
        margin: 0 0 15px 0;
        display: block;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-primary {
    background-color: var(--primary-color);
    color: color-contrast(var(--primary-color));
}

.bg-light {
    background-color: var(--light-bg) !important;
}

/* Images */
.img-fluid {
    border-radius: 8px;
}

.shadow {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

.loaded {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Lists */
.list-numbered {
    counter-reset: item;
    padding-left: 0;
}

.list-numbered li {
    display: block;
    margin-bottom: 1.5rem;
    padding-left: 60px;
    position: relative;
    counter-increment: item;
}

.list-numbered li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--primary-color);
    color: color-contrast(var(--primary-color));
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    color:#fff;
}

ul.list-styled {
    list-style: none;
    padding-left: 0;
}

ul.list-styled li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

ul.list-styled li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Tiles/Cards */
.tiles-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tile {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.tile-icon {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.tile h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.tile p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Accordion */
.accordion {
    margin-top: 30px;
}

.accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 8px !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 500;
    padding: 20px;
    border: none;
    font-size: 16px;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-body {
    padding: 20px;
    background-color: var(--white);
}

.card-header {
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: 600;
    padding: 15px 20px;
}

/* Breadcrumbs */
.breadcrumbs-section {
    background-color: var(--light-bg);
    padding: 15px 0;
    border-bottom: 1px solid #dee2e6;
}

.breadcrumb {
    background-color: transparent;
    margin-bottom: 0;
    padding: 0;
}

.breadcrumb-item {
    font-size: 14px;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
}

.breadcrumb-item.active {
    color: var(--text-muted);
}

/* Footer */
.footer {
    background-color: #721730;
    color: #ffffff;
    padding: 60px 0 20px;
    margin-top: 0px;
}

.footer-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-number {
  font-weight: 800;
  background: #7E1935;
  border-radius: 50%;
  width:60px;
  height:60px;
  color:#fff;
  display:flex;
  justify-content:center;
  align-items:center;
  
}
.process-step.text-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-divider {
    border-color: rgba(255,255,255,0.2);
    margin: 40px 0 20px;
}

.footer-bottom {
    padding-top: 20px;
}

.footer-links-bottom a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.footer-links-bottom a:hover {
    color: var(--secondary-color);
}

.company-info p {
    margin-bottom: 5px;
    font-size: 14px;
}

.legal-notice {
    background-color: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid var(--secondary-color);
}

.cookies-notice {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hide top-bar on mobile only */
    .top-bar {
        display: none !important;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .lead {
        font-size: 1.2rem;
    }
    
    .hero-section {
        height: 450px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .tiles-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mega-menu {
        position: fixed !important;
        top: 20% !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 80vw !important;
        max-width: 350px !important;
        max-height: 70vh !important;
        padding: 20px !important;
        margin: 0 !important;
        background-color: white !important;
        border: 1px solid #dee2e6 !important;
        border-radius: 8px !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        z-index: 9999 !important;
    }
    
    .dropdown-menu {
        position: fixed !important;
        top: 20% !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 80vw !important;
        max-width: 350px !important;
        max-height: 70vh !important;
        padding: 20px !important;
        margin: 0 !important;
        background-color: white !important;
        border: 1px solid #dee2e6 !important;
        border-radius: 8px !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        z-index: 9999 !important;
    }
    
    /* Removed conflicting navbar dropdown styles for mobile */
}

/* Desktop styles - restore normal positioning */
@media (min-width: 769px) {
    .mega-menu {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        top: 100% !important;
        width: 90vw !important;
        max-width: 1140px !important;
        max-height: 80vh !important;
        padding: 30px !important;
        margin: 0 !important;
        background-color: var(--white) !important;
        border: none !important;
        border-radius: 8px !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
        overflow-y: auto !important;
        z-index: 1050 !important;
    }
    
    .dropdown-menu {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        transform: none !important;
        width: auto !important;
        max-width: 300px !important;
        max-height: 400px !important;
        padding: 10px 0 !important;
        margin: 0 !important;
        background-color: white !important;
        border: 1px solid #dee2e6 !important;
        border-radius: 8px !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
        overflow-y: auto !important;
        z-index: 1050 !important;
    }
    
    .logo {
        max-width: 250px;
        max-height: 100px;
    }
    
    
    .footer {
        text-align: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-links-bottom {
        margin-top: 15px;
    }
    
    /* Mobile menu improvements */
    .navbar-nav .nav-link {
        padding: 18px 20px !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        margin-bottom: 2px !important;
    }
    
    .navbar-nav .nav-item {
        margin-bottom: 4px !important;
    }
    
    .navbar-nav .dropdown-toggle::after {
        float: right;
        margin-top: 8px;
    }
    
    .mega-menu .dropdown-item,
    .dropdown-menu .dropdown-item {
        padding: 12px 20px !important;
        color: #333 !important;
        border-bottom: 1px solid #f8f9fa;
        margin-bottom: 1px !important;
    }
    
    .mega-menu .dropdown-item:hover,
    .dropdown-menu .dropdown-item:hover {
        background-color: var(--light-bg) !important;
        color: var(--primary-color) !important;
        padding-left: 25px !important;
    }
    
    .mega-menu .dropdown-header {
        padding: 15px 20px 8px 20px !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        color: var(--primary-color) !important;
        border-bottom: 2px solid var(--secondary-color) !important;
        margin-bottom: 8px !important;
        margin-top: 10px !important;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 400px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .contact-info {
        display: none !important;
    }
}

/* Parallax Effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

/* Loading Animation */
.loading {
    
    transition: opacity 0.3s ease;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
.dropdown-item:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .top-bar,
    .main-navigation,
    .footer,
    .breadcrumbs-section {
        display: none !important;
    }
    
    .hero-section {
        height: auto;
        padding: 40px 0;
        background: none !important;
    }
    
    .hero-section::before {
        display: none;
    }
    
    .hero-content {
        color: var(--black) !important;
    }
}

/* Procedure Cards */
.procedure-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
}

.procedure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.procedure-card .card-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
    display: block;
}

.procedure-card .card-icon i {
    color: var(--primary-color);
}

.procedure-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.procedure-card p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Feature Box */
.feature-box {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.feature-box .feature-icon {
    font-size: 3em;
    margin-bottom: 25px;
    display: block;
}

.feature-box .feature-icon i {
    color: var(--primary-color);
}

.feature-box h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.feature-box p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Info Item */
.info-item {
    text-align: center;
    padding: 20px;
}

.info-item i {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    display: block;
}

.info-item h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-item p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Gradient Primary Background */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6a1429 100%);
    color: #ffffff;
}

/* Customs Process */
.customs-process {
    margin-top: 40px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.process-step .step-number {
    background-color: var(--primary-color);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    margin-right: 25px;
    flex-shrink: 0;
}

.process-step .step-content {
    flex: 1;
}

.process-step .step-content h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.process-step .step-content p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* List Check */
.list-check {
    list-style: none;
    padding-left: 0;
}

.list-check li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #333;
}

.list-check li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
    font-size: 14px;
}

/* Improved text contrast for links in primary background */
.bg-primary a.text-white {
    color: rgba(255,255,255,0.9) !important;
    text-decoration: underline;
}

.bg-primary a.text-white:hover {
    color: var(--secondary-color) !important;
    text-decoration: none;
}

/* Rejection Reasons Styles */
.rejection-reasons {
    margin-top: 30px;
}

.reason-item {
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.reason-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.reason-item p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Requirements List Styles */
.requirements-list {
    margin-top: 30px;
}

.requirement-item {
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.requirement-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.requirement-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.requirement-item p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Document Category Styles */
.document-category {
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    height: 100%;
    transition: all 0.3s ease;
}

.document-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.document-category h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.document-category ul {
    margin-bottom: 20px;
}

.document-category p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Tips Grid Styles */
.tips-grid {
    margin-top: 30px;
}

.tip-item {
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.tip-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.tip-item p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Feature Card Styles */
.feature-card {
    padding: 30px 25px;
    background: var(--white);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.feature-card .feature-icon {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: block;
}

.feature-card .feature-icon i {
    color: var(--primary-color);
}

.feature-card h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Step Card Styles */
.step-card {
    padding: 30px 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.step-card .step-number {
    background-color: var(--primary-color);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
    position: absolute;
    top: -25px;
    left: 25px;
}

.step-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    margin-top: 25px;
    font-weight: 600;
}

.step-card p {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.6;
}

.step-card ul {
    color: var(--text-muted);
    margin-bottom: 0;
}

.step-card ul li {
    margin-bottom: 8px;
}