/* Core Styling Rules */
body {
    font-family: 'Inter', sans-serif;
    color: #212529;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Strategic Color Palette Mapping */
.bg-dark-blue {
    background-color: #0A192F !important;
}
.text-dark-blue {
    color: #0A192F;
}
.text-gold {
    color: #C5A880 !important;
}
.bg-gold {
    background-color: #C5A880 !important;
}
.text-muted-light {
    color: #A8B2D1 !important;
}
.text-muted-dark {
    color: #4A5568;
}
.bg-light-gray {
    background-color: #F8FAFC;
}
.bg-light-gray-form {
    background-color: #FFFFFF;
}
.btn-dark-blue {
    background-color: #0a2540;
    color: white;
  }

/* Structural Components styling */
.logo-t {
    border: 2px solid #C5A880;
    padding: 2px 9px;
    font-size: 1.15rem;
    border-radius: 4px;
}

.tracking-wide {
    letter-spacing: 0.05em;
}

.border-top-gold {
    border-top: 3px solid #C5A880 !important;
}

.border-gold-thin {
    border: 1px solid rgba(197, 168, 128, 0.3);
}

/* Navigation Custom Elements */
.nav-link {
    color: #E2E8F0 !important;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: #C5A880 !important;
}
.btn-outline-gold {
    border: 1px solid #C5A880;
    color: #C5A880;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-outline-gold:hover {
    background-color: #C5A880;
    color: #0A192F;
}

/* Hero UI Section Styling */
.hero-section {
    min-height: 85vh;
    background: linear-gradient(135deg, #0A192F 0%, #172A45 100%);
    position: relative;
    padding: 80px 0;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(197, 168, 128, 0.05) 1px, transparent 0);
    background-size: 24px 24px;
    z-index: 1;
}
.btn-gold {
    background-color: #C5A880;
    color: #0A192F;
    border: none;
    transition: all 0.3s ease;
}
.btn-gold:hover {
    background-color: #B3956D;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 168, 128, 0.2);
}

/* Standardized Content Layout Dividers */
.title-line {
    width: 60px;
    height: 3px;
    background-color: #C5A880;
}

.icon-box {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}
.bg-gold-dark {
    background-color: #B3956D;
}

/* Micro-interaction Hover Animations */
.hover-up {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.hover-up:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06) !important;
}

.service-card {
    border-radius: 6px;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
}
.service-card:hover {
    border-color: #C5A880 !important;
}

/* Layout Constraint Parameters */
.max-w-600 {
    max-width: 600px;
}

/* Intersection Scroll Animation States */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}