/* Brand-Matched Premium Design System for Movia Express */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;600;700;800;900&display=swap');

:root {
    /* Color Palette Extracted from Logo */
    --brand-blue: #325a8c;
    --brand-yellow: #e5b933;
    --brand-dark: #1e3a5f;
    --brand-light-blue: rgba(50, 90, 140, 0.08);
    
    /* UI Colors */
    --primary: var(--brand-blue);
    --accent: var(--brand-yellow);
    --text-main: #0f172a;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --bg-soft-accent: #fef9e7;
    
    /* Shadows & Effects */
    --shadow-premium: 0 10px 30px -5px rgba(50, 90, 140, 0.15);
    --shadow-accent: 0 10px 20px -5px rgba(229, 185, 51, 0.3);
    --glass: rgba(255, 255, 255, 0.95);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Global Styles */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.bg-brand-blue { background-color: var(--brand-blue) !important; }
.text-brand-blue { color: var(--brand-blue) !important; }
.text-brand-yellow { color: var(--brand-yellow) !important; }
.bg-soft-accent { background-color: var(--bg-soft-accent) !important; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.fw-900 { font-weight: 900; }
.ls-1 { letter-spacing: 0.05em; }
.ls-2 { letter-spacing: 0.15em; }

/* Typography Enhancement */
.text-brand-gradient {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-dark) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Global Transitions */
* {
    transition: var(--transition);
}

/* Premium Navbar */
.navbar {
    padding: 1.5rem 0;
    backdrop-filter: blur(15px);
    background-color: var(--glass);
    border-bottom: 1px solid rgba(50, 90, 140, 0.05);
}

.navbar-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    letter-spacing: -0.03em;
    color: var(--brand-blue) !important;
}

.navbar-brand span {
    color: var(--brand-yellow);
}

.nav-link {
    font-weight: 700;
    color: var(--brand-blue) !important;
    padding: 0.5rem 1.5rem !important;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-link:hover, .nav-link.active {
    color: var(--brand-yellow) !important;
    transform: translateY(-1px);
}

/* Dynamic Hero Section */
.hero-section {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(180deg, #f0f4f8 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-section::before {
    content: 'M';
    position: absolute;
    top: -50px;
    right: -100px;
    font-family: 'Outfit', sans-serif;
    font-size: 50rem;
    font-weight: 900;
    color: var(--brand-blue);
    opacity: 0.02;
    z-index: 0;
    pointer-events: none;
}

.hero-tagline {
    font-weight: 800;
    color: var(--brand-yellow);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: var(--brand-blue);
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 650px;
}

/* Modern Buttons */
.btn-modern {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-brand-blue {
    background-color: var(--brand-blue);
    color: var(--white);
    box-shadow: var(--shadow-premium);
}

.btn-brand-blue:hover {
    background-color: var(--brand-dark);
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(50, 90, 140, 0.25);
}

.btn-brand-yellow {
    background-color: var(--brand-yellow);
    color: var(--brand-blue);
    box-shadow: var(--shadow-accent);
}

.btn-brand-yellow:hover {
    background-color: #d4a72a;
    color: var(--brand-blue);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(229, 185, 51, 0.4);
}

/* Card Premium Design */
.card-premium {
    background: var(--white);
    border: none;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    position: relative;
    z-index: 1;
}

.card-premium:hover, .hover-lift:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-premium);
}

.icon-box-premium {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-dark) 100%);
    color: var(--white);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-accent);
    position: relative;
}

.icon-box-premium::after {
    content: '';
    position: absolute;
    top: 5px;
    right: -5px;
    width: 100%;
    height: 100%;
    background: var(--brand-yellow);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.3;
}

/* Stats Styling */
.stat-card {
    background: var(--brand-blue);
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 30px;
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    color: var(--brand-yellow);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Section Decoration */
.section-padding { 
    padding: 120px 0; 
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--brand-blue);
    margin-bottom: 1.5rem;
}

.accent-line {
    width: 80px;
    height: 6px;
    background: var(--brand-yellow);
    border-radius: 3px;
    margin: 0 auto 3rem;
}

/* Floating WhatsApp with Pulse */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 70px;
    height: 70px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(10deg);
    color: white;
}

/* Footer Premium */
.footer-premium {
    background-color: var(--brand-blue);
    color: var(--white);
    padding: 120px 0 60px;
    position: relative;
}

.footer-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--brand-yellow);
}

.footer-heading {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-yellow);
    margin-bottom: 2.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.footer-link:hover {
    color: var(--brand-yellow);
    transform: translateX(8px);
}

.social-circle {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-right: 1rem;
}

.social-circle:hover {
    background: var(--brand-yellow);
    color: var(--brand-blue);
    transform: translateY(-5px);
}

/* Form Controls Enhancement */
.form-control, .form-select {
    font-weight: 500;
}

.form-control:focus, .form-select:focus {
    border-color: var(--brand-yellow);
    box-shadow: 0 0 0 0.25rem rgba(229, 185, 51, 0.15);
}

/* Breadcrumb Styling */
.breadcrumb-item a {
    transition: all 0.3s;
}

.breadcrumb-item a:hover {
    color: var(--brand-yellow) !important;
}

/* Alert Styling */
.alert-light {
    background-color: var(--bg-soft-accent);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-title { font-size: 3.5rem; }
    .section-padding { padding: 80px 0; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 2.75rem; text-align: center; }
    .hero-subtitle { text-align: center; margin: 0 auto 2.5rem; }
    .hero-buttons { justify-content: center !important; }
    .section-title { font-size: 2.25rem; }
    .whatsapp-float { width: 60px; height: 60px; font-size: 2rem; bottom: 30px; right: 30px; }
}
