.elementor-36 .elementor-element.elementor-element-1a254ccc{--display:flex;}/* Start custom CSS */* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #FAFAFA;
}

h1, h2, h3, .serif {
    font-family: 'Roboto', Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.02em;
}

/* Premium Color System */
:root {
    --blue-900: #0A2540;
    --blue-800: #0F3A5F;
    --blue-700: #1A4D7D;
    --blue-50: #EFF6FF;
    --green-600: #059669;
    --green-500: #10B981;
    --green-400: #34D399;
}

.bg-navy { background-color: var(--blue-800); }
.bg-navy-dark { background-color: var(--blue-900); }
.text-navy { color: var(--blue-800); }
.text-gold { color: var(--green-600); }
.bg-gold { background-color: var(--green-600); }
.border-gold { border-color: var(--green-600); }

/* Advanced Glassmorphism */
.glass-ultra {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
}

.glass-dark-ultra {
    background: rgba(0, 21, 41, 0.75);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.25);
}

.glass-gold-ultra {
    background: rgba(5, 150, 105, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(5, 150, 105, 0.12);
}

/* Premium Shadow System */
.shadow-premium {
    box-shadow:
        0 1px 2px 0 rgba(0, 0, 0, 0.05),
        0 4px 12px 0 rgba(0, 0, 0, 0.08),
        0 16px 32px 0 rgba(0, 0, 0, 0.08);
}

.shadow-premium-lg {
    box-shadow:
        0 2px 4px 0 rgba(0, 0, 0, 0.06),
        0 8px 24px 0 rgba(0, 0, 0, 0.12),
        0 24px 48px 0 rgba(0, 0, 0, 0.12);
}

/* Smooth Animations */
.transition-premium {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow:
        0 4px 8px 0 rgba(0, 0, 0, 0.06),
        0 12px 32px 0 rgba(0, 0, 0, 0.12),
        0 32px 64px 0 rgba(0, 0, 0, 0.14);
}

/* Navigation Enhancements */
.nav-link {
    position: relative;
    padding-bottom: 2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--green-600);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Page Transition */
.page-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.page-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium Gradient Overlays */
.gradient-overlay-navy {
    background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 50%, var(--blue-700) 100%);
}

.gradient-overlay-radial {
    background: radial-gradient(circle at top right, var(--blue-700), var(--blue-900));
}

/* Refined Button Styles */
.btn-primary {
    background: var(--green-600);
    color: white;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 1.25rem 2.5rem;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 1.25rem 2.5rem;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Premium Input Styles */
.input-premium {
    border-bottom: 2px solid #E5E7EB;
    background: transparent;
    transition: border-color 0.3s ease;
}

.input-premium:focus {
    border-color: var(--green-600);
    outline: none;
}

/* Dot Pattern Background */
.dot-pattern {
    background-image: radial-gradient(rgba(5, 150, 105, 0.12) 1px, transparent 1px);
    background-size: 24px 24px;
}

/* Mobile Menu */
#mobile-menu {
    transition: all 0.3s ease;
}

/* Statistics Counter Animation */
.stat-number {
    font-variant-numeric: tabular-nums;
}

/* Service Card Hover Effect */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--green-600), var(--green-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Refined Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--green-600);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--blue-800);
}

/* Premium Timeline */
.timeline-connector {
    position: relative;
}

.timeline-connector::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 2rem;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--green-600), transparent);
}

.timeline-connector:last-child::after {
    display: none;
}

/* Responsive Typography */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem !important; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.25rem !important; line-height: 1.2 !important; }
    h2 { font-size: 2rem !important; }
    h3 { font-size: 1.5rem !important; }
    .hero-title { font-size: 2.5rem !important; }

    .glass-dark-ultra {
        padding: 1rem !important;
    }

    .stat-number {
        font-size: 3rem !important;
    }
}

@media (max-width: 640px) {
    .hero-title { font-size: 2rem !important; }

    .stat-number {
        font-size: 2.5rem !important;
    }
}

/* Parallax Effect */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* Mobile fallback - disable parallax on mobile for performance */
@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll;
    }
}/* End custom CSS */