/* Custom Variables & Design Tokens */
:root {
    --primary: #0F1E36;       /* Premium Dark Slate Navy */
    --primary-light: #1A3154; /* Light Slate Navy */
    --accent: #C5A880;        /* Luxury Gold Accent */
    --accent-hover: #B3956D;  /* Darker Gold on hover */
    --success: #10B981;       /* Vibrant Emerald Success */
    --warning: #F59E0B;       /* Amber Warning */
    --danger: #EF4444;        /* Crimson Alert */
    --bg-light: #F8FAFC;      /* Crisp Off-White */
    --bg-card: #FFFFFF;       /* Clean Card Base */
    --text-main: #1E293B;     /* Slate Dark Text */
    --text-muted: #64748B;    /* Slate Cool Muted Text */
    --border-color: #E2E8F0;  /* Subtle grey border */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 4px rgba(15, 30, 54, 0.05);
    --shadow-md: 0 10px 20px rgba(15, 30, 54, 0.08);
    --shadow-lg: 0 20px 40px rgba(15, 30, 54, 0.12);
}

/* Base Adjustments */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .Outfit {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary);
}

/* Typography Utilities */
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.fs-12 { font-size: 0.75rem; }
.fs-13 { font-size: 0.8125rem; }
.fs-14 { font-size: 0.875rem; }
.fs-22 { font-size: 1.375rem; }
.tracking-wider { letter-spacing: 0.05em; }

/* Custom Colors */
.text-primary { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.bg-primary-dark { background-color: var(--primary); }

/* Buttons & Interactive Elements */
.btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #FFFFFF !important;
    transition: var(--transition);
}
.btn-accent:hover, .btn-accent:focus {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    box-shadow: 0 4px 12px rgba(197, 168, 128, 0.35);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    border-width: 2px;
    font-weight: 600;
}
.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
}

.transform-hover {
    transition: var(--transition);
}
.transform-hover:hover {
    transform: translateY(-3px);
}

/* Top Utility Bar */
.top-bar {
    background: linear-gradient(135deg, var(--primary) 0%, #08101E 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-bar a:hover {
    color: var(--accent) !important;
}

/* Main Navbar */
.brand-logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 8px rgba(15, 30, 54, 0.15);
}
.navbar-nav .nav-link {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--primary-light);
    padding: 0.5rem 0.6rem !important; /* Reduced horizontal padding to prevent wrapping on smaller desktop screens */
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    outline: none !important;
    box-shadow: none !important;
}

/* Underline Animation on Hover & Active State */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0.6rem;
    right: 0.6rem;
    height: 2px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: bottom center;
    transition: var(--transition);
}
.navbar-nav .nav-link:hover::after, 
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}
.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link.active {
    color: var(--accent);
}
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:active,
.navbar-nav .nav-link:focus-visible,
.navbar-brand:focus,
.navbar-brand:active,
.navbar-brand:focus-visible,
.btn:focus,
.btn:active,
.btn:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(15, 30, 54, 0.95) 0%, rgba(8, 16, 30, 0.85) 100%), 
                url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1920&q=80') no-repeat center center / cover;
    padding: 100px 0 120px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}
.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
    .hero-title { font-size: 2.25rem; }
    .hero-section { padding: 60px 0 80px; }
}

/* Service Card Components */
.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(197, 168, 128, 0.4);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--accent);
    transition: var(--transition);
    z-index: 3;
}
.service-card:hover::before {
    height: 100%;
}

/* Service Card Image Wrapper Styles */
.service-card-img-wrapper {
    height: 180px;
    overflow: hidden;
    position: relative;
}
.service-card-img-wrapper img {
    transition: var(--transition);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-card:hover .service-card-img-wrapper img {
    transform: scale(1.06); /* Premium subtle zoom on hover */
}
.service-card-img-wrapper .badge-category {
    top: 15px;
    left: 15px;
    z-index: 5;
    margin: 0;
}

/* Badge Layouts */
.badge-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35em 0.8em;
    border-radius: 50px;
    background-color: rgba(15, 30, 54, 0.06);
    color: var(--primary);
    margin-bottom: 1rem;
    display: inline-block;
}

/* Steps Block */
.step-item {
    position: relative;
    padding: 2rem;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: var(--transition);
}
.step-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}
.step-number {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(15, 30, 54, 0.04);
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
}
.step-item:hover .step-number {
    color: rgba(197, 168, 128, 0.1);
    transform: scale(1.1);
}

/* Feature Grid */
.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(197, 168, 128, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.25rem;
}

/* Form Container Style */
.inquiry-box {
    background-color: #FFFFFF;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
}
.inquiry-box-header {
    background: linear-gradient(135deg, var(--primary) 0%, #08101E 100%);
    color: #FFFFFF;
    padding: 2rem;
}
.inquiry-box-body {
    padding: 2.5rem;
}
.form-control, .form-select {
    padding: 0.75rem 1rem;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--text-main);
    background-color: #FCFDFE;
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    background-color: #FFFFFF;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
    outline: none;
}
.form-label {
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Table Style */
.table-custom {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}
.table-custom thead {
    background-color: var(--primary);
    color: #FFFFFF;
}
.table-custom th {
    padding: 1rem 1.25rem !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}
.table-custom td {
    padding: 1rem 1.25rem !important;
    vertical-align: middle;
}

/* Accordion FAQs */
.accordion-custom .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    background-color: #FFFFFF;
    transition: var(--transition);
}
.accordion-custom .accordion-item:hover {
    border-color: rgba(197, 168, 128, 0.5);
    box-shadow: var(--shadow-sm);
}
.accordion-custom .accordion-button {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary);
    padding: 1.25rem 1.5rem;
    background-color: #FFFFFF;
    box-shadow: none !important;
}
.accordion-custom .accordion-button:not(.collapsed) {
    color: var(--accent);
    background-color: rgba(197, 168, 128, 0.03);
    border-bottom: 1px solid var(--border-color);
}
.accordion-custom .accordion-body {
    padding: 1.25rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    background-color: #FCFDFE;
}

/* Footer Section */
.footer {
    background-color: #0A1424;
    border-top: 5px solid var(--accent);
}
.footer-heading {
    position: relative;
    padding-bottom: 10px;
    font-size: 1.15rem;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}
.hover-accent:hover {
    color: var(--accent) !important;
}

/* Mobile & Tablet Responsive Adjustments for Navbar */
@media (max-width: 1199.98px) {
    .navbar-nav .nav-link {
        padding: 0.75rem 1.2rem !important;
        white-space: normal;
    }
    .navbar-nav .nav-link::after {
        display: none; /* Hide hover underline animation on mobile */
    }
}

/* Service Inner Pages Styles */
.inner-hero {
    padding: 100px 0;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}
.inner-hero-banner {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(15, 30, 54, 0.75) 0%, rgba(8, 16, 30, 0.9) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 168, 128, 0.28);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    max-width: 820px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.1);
}
.hero-divider {
    width: 65px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, #E6C89C 100%);
    margin: 1.25rem auto;
    border-radius: 10px;
}
.inner-hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}
@media (max-width: 768px) {
    .inner-hero-title { font-size: 2rem; }
    .inner-hero-banner { padding: 2.2rem 1.8rem; }
    .inner-hero { padding: 60px 0; }
}

/* Home Page Hero Glass Banner */
.hero-glass-banner {
    background: linear-gradient(135deg, rgba(15, 30, 54, 0.78) 0%, rgba(8, 16, 30, 0.92) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 168, 128, 0.25);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), inset 0 1px 2px rgba(255, 255, 255, 0.08);
}
.requirement-list li {
    font-size: 0.95rem;
    color: var(--text-main);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.75rem;
}
.requirement-list i {
    color: var(--success);
    margin-top: 4px;
}
.sidebar-sticky {
    position: sticky;
    top: 100px;
    z-index: 10;
}
.price-card-accent {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition);
}
.price-card-accent:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

/* Utility Classes */
.rounded-16 { border-radius: 16px !important; }
.rounded-20 { border-radius: 20px !important; }
.max-w-600 { max-width: 600px; }
.space-y-4 > * + * { margin-top: 1rem; }
.leading-relaxed { line-height: 1.75; }
.fs-11 { font-size: 0.6875rem; }
.fs-16 { font-size: 1rem; }
.fs-20 { font-size: 1.25rem; }
.text-white-30 { color: rgba(255, 255, 255, 0.3) !important; }
.bg-light-subtle { background-color: #f8f9fa !important; }

/* Footer Visibility Fixes */
.footer {
    background-color: var(--primary);
}
.footer .footer-heading {
    color: #ffffff !important;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition);
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    color: #fff;
}

/* Contact Page Map */
.map-container {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

/* Status Badge Styles */
.status-badge {
    display: inline-block;
    padding: 0.3em 0.8em;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Country List Cards */
.country-list-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
}
.country-list-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

/* Guide Section Styles */
.guide-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    transition: var(--transition);
}
.guide-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
