/* assets/css/style.css */

:root {
    --primary-color: #111827; /* Dark Charcoal */
    --primary-light: #1f2937;
    --secondary-color: #374151; /* Muted Slate Grey */
    --secondary-light: #4b5563;
    --accent-color: #c9a25b; /* Champagne Gold */
    --text-dark: #111827;
    --text-muted: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Flat Design Overrides */
.rounded-pill, .rounded-4, .rounded-3 {
    border-radius: 2px !important;
}
.shadow, .shadow-sm, .shadow-lg {
    box-shadow: none !important;
}

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

.btn {
    border-radius: 2px !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.2s ease;
    color: white;
}
.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    color: white;
}

.btn-warning {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}
.btn-warning:hover {
    background-color: #b38b46;
    border-color: #b38b46;
    color: white;
}

/* Hero Section */
.hero-section {
    background-color: var(--bg-white);
    padding: 120px 0 80px 0;
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
}

/* Services Card Hover */
.service-card {
    transition: all 0.2s ease;
    border-radius: 2px;
    border: 1px solid #e5e7eb;
    background: var(--bg-white);
}
.service-card:hover {
    border-color: var(--accent-color);
}
.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 24px;
    background: #eff6ff;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

/* Testimonial Card */
.testimonial-card {
    background: var(--bg-white);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

/* Industry Card */
.industry-card {
    background: var(--primary-light);
    color: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.2s ease;
}
.industry-card:hover {
    background: var(--secondary-color);
    transform: translateY(-4px);
}
.industry-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

/* Top Bar */
.top-bar {
    font-size: 0.85rem;
    font-weight: 500;
}
.top-bar a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease;
}
.top-bar a:hover {
    color: var(--accent-color);
}

/* Footer Links */
.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
    margin-bottom: 0.5rem;
}
.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.social-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}
.social-icon-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: transform 0.3s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}
.my-float {
    margin-top: 16px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 40px;
    bottom: 40px;
    z-index: 99;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
    color: white;
}
.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}
.back-to-top:hover {
    background: var(--secondary-color);
    color: #fff;
}
.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/* Utilities */
.section-padding {
    padding: 80px 0;
}
.section-title {
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}
.section-title::after {
    content: '';
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    bottom: 0;
    left: calc(50% - 30px);
}

/* Financial Ticker Marquee */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
}
.ticker-move {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 25s linear infinite;
}
.ticker-move:hover {
    animation-play-state: paused;
}
.ticker-item {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
}
@keyframes ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* Enterprise Mega Menu */
.mega-menu {
    border-top: 3px solid var(--accent-color) !important;
}
@media (min-width: 992px) {
    .position-static .dropdown-menu {
        width: 100%;
        left: 0;
        right: 0;
    }
}
.mega-menu .dropdown-item {
    transition: all 0.2s ease;
}
.mega-menu .dropdown-item:hover {
    background-color: var(--bg-light);
    transform: translateX(4px);
}
.mega-menu .dropdown-item.bg-primary:hover {
    background-color: var(--primary-light) !important;
}
