@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&family=Open+Sans:wght@400;600&display=swap');

:root {
    --primary: #d32f2f;
    --primary-hover: #b71c1c;
    --dark: #0f1115;
    --light-dark: #1a1d24;
    --gray: #2d313a;
    --text: #ffffff;
    --muted: #9ba0ab;
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); background: var(--dark); color: var(--text); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* Top Bar */
.top-bar { background: #08090b; padding: 10px 5%; display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); border-bottom: 1px solid #1f232b; }
.top-bar-left span, .top-bar-right span { margin-right: 20px; }
.top-bar i { color: var(--primary); margin-right: 8px; }

/* Header */
header { background: rgba(15, 17, 21, 0.95); padding: 20px 5%; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(10px); border-bottom: 1px solid var(--gray); }
.logo { font-family: var(--font-head); font-size: 28px; font-weight: 800; color: var(--text); text-transform: uppercase; letter-spacing: 1px; }
.logo span { color: var(--primary); }
nav ul { display: flex; gap: 30px; }
nav a { font-family: var(--font-head); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
nav a:hover { color: var(--primary); }
.header-cta { display: flex; align-items: center; gap: 20px; }
.phone-block { text-align: right; }
.phone-block .phone { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: var(--primary); }
.phone-block .subtext { font-size: 11px; color: var(--muted); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 16px 32px; background: var(--primary); color: #fff; font-family: var(--font-head); font-weight: 600; text-transform: uppercase; font-size: 14px; letter-spacing: 1px; border: none; cursor: pointer; transition: all 0.3s ease; position: relative; overflow: hidden; }
.btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: 0.5s; }
.btn:hover::before { left: 100%; }
.btn:hover { background: var(--primary-hover); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(211, 47, 47, 0.3); }
.btn-outline { background: transparent; border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); }

/* Hero Section */
.hero { height: 85vh; display: flex; align-items: center; padding: 0 5%; background: linear-gradient(to right, rgba(15, 17, 21, 0.95) 20%, rgba(15, 17, 21, 0.5)), url('https://images.unsplash.com/photo-1613214149922-f1809c99b414?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover; }
.hero-content { max-width: 700px; }
.badge { display: inline-block; padding: 6px 12px; background: rgba(211, 47, 47, 0.1); border: 1px solid var(--primary); color: var(--primary); font-size: 12px; font-weight: 600; text-transform: uppercase; margin-bottom: 20px; letter-spacing: 1px; }
.hero h1 { font-family: var(--font-head); font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 20px; text-transform: uppercase; }
.hero h1 span { color: var(--primary); }
.hero p { font-size: 1.1rem; color: var(--muted); margin-bottom: 40px; }
.hero-buttons { display: flex; gap: 20px; }

/* Features Bar */
.features-bar { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); background: var(--primary); color: #fff; }
.feature-item { padding: 40px 30px; display: flex; align-items: center; gap: 20px; border-right: 1px solid rgba(255,255,255,0.1); }
.feature-item i { font-size: 40px; opacity: 0.8; }
.feature-item h4 { font-family: var(--font-head); font-size: 16px; margin-bottom: 5px; }
.feature-item p { font-size: 13px; opacity: 0.8; }

/* Sections */
.section { padding: 100px 5%; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .subtitle { color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 14px; display: block; margin-bottom: 10px; }
.section-header h2 { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; text-transform: uppercase; }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.service-card { background: var(--light-dark); padding: 40px; border: 1px solid var(--gray); transition: 0.4s; position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--primary); transition: 0.4s; }
.service-card:hover { transform: translateY(-10px); border-color: #3a3f4a; box-shadow: 0 15px 30px rgba(0,0,0,0.5); }
.service-card:hover::after { width: 100%; }
.service-icon { width: 70px; height: 70px; background: rgba(211, 47, 47, 0.1); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 30px; border-radius: 50%; margin-bottom: 25px; transition: 0.4s; }
.service-card:hover .service-icon { background: var(--primary); color: #fff; }
.service-card h3 { font-family: var(--font-head); font-size: 20px; margin-bottom: 15px; }
.service-card p { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.service-link { color: var(--primary); font-weight: 600; text-transform: uppercase; font-size: 13px; letter-spacing: 1px; display: flex; align-items: center; gap: 5px; }
.service-link i { transition: 0.3s; }
.service-card:hover .service-link i { transform: translateX(5px); }

/* Brands */
.brands-section { background: var(--light-dark); padding: 60px 5%; text-align: center; border-top: 1px solid var(--gray); border-bottom: 1px solid var(--gray); }
.brands-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 30px; opacity: 0.5; }
.brands-grid span { font-family: var(--font-head); font-size: 24px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; }