:root {
    --bg-dark: #0f1115;
    --bg-card: rgba(30, 35, 45, 0.6);
    --bg-glass: rgba(15, 17, 21, 0.75);
    --accent-yellow: #FACC15;
    --accent-yellow-glow: rgba(250, 204, 21, 0.4);
    --text-pure: #ffffff;
    --text-muted: #9ba3af;
    --border-light: rgba(255, 255, 255, 0.08);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-pure);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

/* Layout Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-highlight {
    color: var(--accent-yellow);
}

.text-gradient {
    background: linear-gradient(90deg, #fff, #a3a3a3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-line {
    height: 4px;
    width: 60px;
    background: var(--accent-yellow);
    margin: 1.5rem 0;
    border-radius: 2px;
}

.header-line.center {
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    outline: none;
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

.btn-primary {
    background-color: var(--accent-yellow);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(250, 204, 21, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(250, 204, 21, 0.4);
    background-color: #fde047;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-pure);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.glow-effect {
    position: relative;
    z-index: 1;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    background: linear-gradient(45deg, var(--accent-yellow), transparent, var(--accent-yellow));
    border-radius: inherit;
    filter: blur(10px);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.glow-effect:hover::before {
    opacity: 0.5;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 0;
    z-index: 100;
    transition: all var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: var(--bg-glass);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-noble {
    color: #fff;
}

.logo-line {
    color: var(--accent-yellow);
    margin-left: 0.25rem;
}

.logo-striping {
    font-weight: 400;
    font-size: 1rem;
    margin-left: 0.5rem;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-pure);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-yellow);
    transition: width var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .nav-contact {
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.05);
}

.nav-links .nav-contact::after {
    display: none;
}

.nav-links .nav-contact:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, rgba(250, 204, 21, 0.03) 0, rgba(250, 204, 21, 0.03) 1px, transparent 1px, transparent 30px),
        radial-gradient(circle at 70% 30%, rgba(250, 204, 21, 0.1) 0%, transparent 50%);
    z-index: -1;
    opacity: 0.6;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Sections Global */
section {
    padding: 8rem 0;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Services */
.services-section {
    background-color: rgba(0, 0, 0, 0.2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(250, 204, 21, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
}

/* Service Area */
.service-area-section {
    position: relative;
}

.area-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(15, 17, 21, 0.9) 100%);
    border-left: 4px solid var(--accent-yellow);
}

.area-text {
    flex: 1;
}

.area-highlight {
    font-size: 1.5rem;
    color: var(--text-pure);
    margin-bottom: 1rem;
}

.area-text p {
    color: var(--text-muted);
}

.area-icon {
    font-size: 6rem;
    color: rgba(250, 204, 21, 0.15);
}

/* Why Us */
.split-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-left {
    flex: 1;
}

.why-us-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 400px;
}

.split-right {
    flex: 1;
}

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all var(--transition-fast);
}

.features-list li:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
    border-color: rgba(250, 204, 21, 0.2);
}

.features-list li i {
    color: var(--accent-yellow);
    font-size: 1.5rem;
}

/* About Section */
.about-section {
    text-align: center;
}

.about-card {
    max-width: 800px;
    margin: 0 auto;
}

.about-logo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    display: block;
    border-radius: 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.about-card p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(to top, rgba(250, 204, 21, 0.05), transparent);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 2.5rem;
}

/* Footer */
footer {
    background-color: #0a0b0d;
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: 1px;
}

.footer-brand span {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 1rem;
    letter-spacing: 2px;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 300px;
}

.footer-contact h4,
.footer-location h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-pure);
}

.footer-contact a,
.footer-location p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.footer-contact a:hover {
    color: var(--accent-yellow);
}

.footer-contact i,
.footer-location i {
    color: var(--accent-yellow);
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.footer-bottom .credit {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .split-layout {
        flex-direction: column;
    }

    .area-content {
        flex-direction: column;
        text-align: center;
    }

    .area-icon {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .nav-links {
        display: none;
        /* simple mobile fix, could add hamburger */
    }
}