:root {
    --primary-color: #ff4500;
    --primary-dark: #cc3700;
    --bg-dark: #0a0a0a;
    --bg-section: #141414;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --accent-gradient: linear-gradient(135deg, #ff4500 0%, #ff6b35 100%);
}

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

/* Text Selection */
::selection {
    background-color: var(--primary-color);
    color: white;
}

::-moz-selection {
    background-color: var(--primary-color);
    color: white;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    overflow-x: hidden;
    padding-bottom: 80px;
}

.arvo-bold {
    font-family: "Arvo", serif;
    font-weight: 700;
    font-style: normal;
}

/* Navigation */
.navbar {
    background-color: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-brand {
    padding: 8px 0;
}

.navbar-brand img {
    transition: transform 0.3s ease;
    filter: brightness(1);
}

.navbar-brand:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.navbar-nav .nav-link {
    color: var(--text-secondary) !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-section) 100%);
}

.hero-title {
    font-size: clamp(60px, 10vw, 120px);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: -20px;
}

.hero-subtitle {
    font-size: clamp(24px, 4vw, 36px);
    color: var(--text-secondary);
    letter-spacing: 3px;
    font-weight: 300;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 2rem auto;
    line-height: 1.8;
}

/* Section Styling */
.section {
    padding: 80px 0;
}

.section-alt {
    background-color: var(--bg-section);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gradient);
}

/* Services Cards */
.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.2);
}

.service-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    margin: 3rem 0;
}

.about-image img {
    width: 100%;
    height: auto;
    filter: brightness(0.9);
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-section);
}

.contact-info {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
}

.contact-item {
    margin-bottom: 2rem;
    word-break: break-word;
    min-height: 80px;
}

@media (max-width: 1199px) {
    .contact-info .row > div {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 1.5rem;
    }
}

.contact-item strong {
    color: var(--primary-color);
    font-size: 18px;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.3);
    color: white;
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    padding:  0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1020;
}

.footer-content {
    text-align: center;
    color: var(--text-secondary);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s ease forwards;
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 60px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
}
