/* Redesign CSS - Mobile First & Premium Aesthetics */

:root {
    --primary-color: #2962FF;
    --primary-dark: #0039CB;
    --secondary-color: #FFD600;
    --dark-bg: #0F172A;
    --light-bg: #F8FAFC;
    --text-main: #334155;
    --text-light: #94A3B8;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --font-family: 'Inter', sans-serif;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-family);
    background-color: var(--light-bg);
    color: var(--text-main);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--dark-bg);
    line-height: 1.2;
}

/* Utilities */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

.glass-dark {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.shadow-hover {
    transition: var(--transition);
}

.shadow-hover:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.section-padding {
    padding: 4rem 1rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 6rem 2rem;
    }
}

/* Header Redesign */
header.sticky-top {
    background: transparent !important;
    /* Override default */
    padding: 0;
}

.navbar-redesign {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-main) !important;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(41, 98, 255, 0.05);
}

.btn-premium {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-outline-premium {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-premium:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Hero Section */
.hero-wrapper {
    position: relative;
    padding: 8rem 1rem 4rem;
    background: var(--dark-bg);
    color: var(--white);
    overflow: hidden;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #94A3B8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-wrapper {
        padding: 12rem 2rem 8rem;
        text-align: left;
    }

    .hero-content {
        margin: 0;
        max-width: 600px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(41, 98, 255, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(41, 98, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    flex-grow: 1;
}

/* Footer */
.footer-redesign {
    background: var(--dark-bg);
    color: var(--text-light);
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-link {
    color: var(--text-light);
    display: block;
    margin-bottom: 0.75rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Mobile Scroll Snap for Services */
.mobile-snap-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
}

.mobile-snap-item {
    scroll-snap-align: center;
    min-width: 280px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .mobile-snap-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        overflow-x: visible;
    }

    .mobile-snap-item {
        min-width: auto;
    }
}