:root {
    --primary: #ec1a21;
    --background: #fefefe;
    --accent-1: #ec1a21;
    --accent-2: #888d95;
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --card-bg: #ffffff;
    --card-border: #e5e7eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Updated solid card style matching white/red corporate theme */
.glass {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--card-border);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.logo {
    display: flex;
    align-items: center;
}

#navbar-logo {
    height: 40px; /* Adjust height based on preference */
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main);
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-1);
}

/* Updated Hero without neon image, using elegant corporate gradient */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('assets/hero-bg.png') center/cover no-repeat fixed;
    text-align: center;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(254, 254, 254, 0.85) 0%, rgba(247, 147, 149, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--primary);
}

.hero p {
    font-size: 1.5rem;
    color: var(--accent-2);
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero q {
    display: block;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary);
    color: #ffffff;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(236, 26, 33, 0.2);
    background-color: #d1161c;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 800;
    color: var(--text-main);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

section {
    padding: 8rem 0;
}

/* --- STATS SECTION --- */
.stats {
    background-color: var(--primary);
    color: #ffffff;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    display: inline-block;
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0px;
}

.stat-item span {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    vertical-align: super;
}

.stat-item p {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* --- PARALLAX SHAPES --- */
.parallax-shape {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    pointer-events: none;
    transition: transform 0.1s linear;
}

.shape-1 {
    width: 300px;
    height: 300px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    top: -50px;
    left: -100px;
}

.shape-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    bottom: -300px;
    right: -200px;
}

.shape-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 26, 33, 0.05) 0%, transparent 60%);
    top: 10%;
    left: 60%;
}

.about {
    position: relative;
    background-color: #f9fafb;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    padding: 2.5rem;
    transition: transform 0.4s ease;
    border-top: 4px solid var(--primary);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.about-card p {
    color: var(--text-muted);
}

.services {
    background: radial-gradient(circle at top right, rgba(236, 26, 33, 0.03), transparent 60%),
                radial-gradient(circle at bottom left, rgba(136, 141, 149, 0.05), transparent 60%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    padding: 2rem;
    text-align: left;
    transition: all 0.4s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 25px 50px rgba(236, 26, 33, 0.15);
}

.service-card:hover .icon {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(236, 26, 33, 0.5));
}

.service-card .icon {
    margin-bottom: 1.5rem;
    height: 80px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.service-card .icon img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.philosophy {
    padding: 4rem;
    text-align: center;
    background-color: var(--primary);
    color: #ffffff;
    border-radius: 16px;
}

.philosophy h2 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.philosophy h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.philosophy p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

.team {
    position: relative;
    background-color: #f9fafb;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    justify-content: center;
}

.team-member {
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s;
    border-bottom: 4px solid var(--accent-2);
}

.team-member:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary);
}

.member-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.member-info .role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-info .desc {
    color: var(--text-muted);
}

.footer {
    background-color: #1f2937;
    color: #ffffff;
    padding: 6rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-info p {
    color: #9ca3af;
}

.locations {
    display: flex;
    gap: 3rem;
}

.location-card h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    border-left: 3px solid var(--primary);
    padding-left: 10px;
}

.location-card p {
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    color: #6b7280;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    font-size: 0.9rem;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.delay { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .hero p { font-size: 1.2rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .locations { flex-direction: column; gap: 2rem; }
    .nav-links { display: none; }
}
