/* GLOBAL RESET */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #050505;
    color: #e8e8e8;
    overflow-x: hidden;
}

h1, h2, h3 {
    letter-spacing: 0.5px;
    margin-top: 0;
}

a {
    color: inherit;
}

/* LAYOUT */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* HEADER */
header {
    background: rgba(10, 10, 10, 0.95);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 106, 0, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    color: #ff6a00;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 106, 0, 0.5);
}

nav a {
    margin-left: 22px;
    color: #e8e8e8;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: 0.25s;
}

nav a:hover {
    color: #ff6a00;
    text-shadow: 0 0 6px rgba(255, 106, 0, 0.7);
}

/* HERO */
.hero {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px 100px;
    background: radial-gradient(circle at top, #ff6a00 0%, #1a0a00 35%, #050505 80%);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,106,0,0.25), transparent 70%);
    top: -180px;
    left: -120px;
    filter: blur(40px);
    opacity: 0.7;
    animation: pulseGlow 7s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    from { transform: scale(1); opacity: 0.4; }
    to { transform: scale(1.2); opacity: 0.8; }
}

.hero-inner {
    position: relative;
    text-align: center;
    max-width: 800px;
    z-index: 2;
    animation: fadeIn 1.1s ease-out;
}

.tagline {
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #ffd2a3;
    margin-bottom: 10px;
}

.hero-inner h2 {
    font-size: 48px;
    margin-bottom: 12px;
    font-weight: 700;
    text-shadow: 0 0 14px rgba(0, 0, 0, 0.6);
}

.hero-inner p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 6px;
}

.location {
    margin-top: 8px;
    font-size: 16px;
    opacity: 0.9;
    font-style: italic;
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 13px 28px;
    background: #111;
    color: #ff6a00;
    border: 2px solid #ff6a00;
    text-decoration: none;
    margin-top: 22px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: 0.25s;
    border-radius: 4px;
}

.btn:hover {
    background: #ff6a00;
    color: #111;
    box-shadow: 0 0 14px rgba(255, 106, 0, 0.8);
}

/* SECTIONS */
.section {
    padding: 70px 0;
}

.section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

/* SERVICES */
.services {
    background: #080808;
}

.services-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.service-item {
    background: #141414;
    padding: 22px;
    border-radius: 6px;
    border-left: 4px solid #ff6a00;
    box-shadow: 0 0 10px rgba(255, 106, 0, 0.12);
    transition: 0.25s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 18px rgba(255, 106, 0, 0.35);
}

.service-item h3 {
    margin-bottom: 8px;
    font-size: 20px;
    color: #ff8a33;
}

.service-item p {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.5;
}

.note {
    margin-top: 26px;
    font-size: 13px;
    opacity: 0.7;
    text-align: center;
}

/* MOBILE READY */
.mobile {
    background: #050505;
}

.mobile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.mobile-item {
    background: #141414;
    padding: 22px;
    border-radius: 6px;
    border: 1px solid rgba(255, 106, 0, 0.25);
    transition: 0.25s;
}

.mobile-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 16px rgba(255, 106, 0, 0.3);
}

.mobile-item h3 {
    margin-bottom: 8px;
    font-size: 19px;
    color: #ff8a33;
}

.mobile-item p {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.5;
}

/* PROCESS */
.process {
    background: #050505;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.process-step {
    background: #111;
    padding: 22px;
    border-radius: 6px;
    border: 1px solid rgba(255, 106, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6a00, transparent);
    top: 0;
    left: -10%;
    opacity: 0.4;
}

.step-number {
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #ffb37a;
    margin-bottom: 6px;
}

.process-step h3 {
    margin-bottom: 8px;
    font-size: 19px;
}

.process-step p {
    font-size: 15px;
    opacity: 0.9;
}

/* WHY */
.why {
    background: #080808;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.why-card {
    background: #141414;
    padding: 22px;
    border-radius: 6px;
    border: 1px solid rgba(255, 106, 0, 0.25);
    transition: 0.25s;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 16px rgba(255, 106, 0, 0.3);
}

.why-card h3 {
    margin-bottom: 8px;
    font-size: 19px;
}

.why-card p {
    font-size: 15px;
    opacity: 0.9;
}

/* ABOUT */
.about {
    background: #050505;
    text-align: center;
}

.about p {
    max-width: 800px;
    margin: 10px auto;
    line-height: 1.6;
    font-size: 15px;
}

/* CONTACT */
.contact {
    background: #080808;
    text-align: center;
}

.contact p {
    max-width: 600px;
    margin: 10px auto;
    font-size: 15px;
}

.contact-note {
    margin-top: 10px;
    font-size: 13px;
    opacity: 0.8;
}

/* FOOTER */
footer {
    background: #050505;
    border-top: 1px solid rgba(255, 106, 0, 0.4);
    padding: 18px 0;
    font-size: 13px;
    opacity: 0.85;
}

.footer-inner {
    text-align: center;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-inner h2 {
        font-size: 34px;
    }

    nav a {
        margin-left: 14px;
        font-size: 12px;
    }

    .services-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section {
        padding: 60px 0;
    }
}
