:root {
    --bg-color: #050505;
    --surface-color: #121212;
    --primary-color: #f00000; /* Red */
    --primary-hover: #c00000;
    --text-primary: #f5f5f5;
    --text-secondary: #a0aab2;
    --border-color: #2c313c;
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

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

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-title span {
    color: var(--primary-color);
}

.section-title p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(15, 17, 21, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px; /* Space between logo image and text */
}

.logo-img {
    height: 60px;
    width: auto;
    border-radius: 4px;
}

.logo-text {
    font-size: 1.7rem;
    color: #fff;
    letter-spacing: 0.5px;
}

.logo-text span {
    color: var(--primary-color);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    background: url('hero-bg.png') center/cover no-repeat;
    padding-top: 80px; /* Offset for header */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 17, 21, 0.95) 0%, rgba(15, 17, 21, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 700px;
}

.hero-title span {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Services */
.services {
    background-color: var(--bg-color);
}

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

.service-card {
    background-color: var(--surface-color);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 87, 34, 0.1);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-secondary);
}

/* About Section */
.about {
    background-color: var(--surface-color);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text span {
    color: var(--primary-color);
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.features-list {
    margin-bottom: 40px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.features-list svg {
    color: var(--primary-color);
}

.about-stats {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-box {
    background-color: var(--bg-color);
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.stat-box h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-box p {
    color: var(--text-secondary);
    font-weight: 600;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    background-color: var(--surface-color);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.call-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.call-person {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-color);
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    text-align: left;
}

.call-person span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

.call-person small {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.call-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

/* Floating CTA (Mobile) */
.mobile-floating-cta {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    z-index: 999;
    border: none;
    cursor: pointer;
}

/* Call Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--surface-color);
    padding: 35px 25px;
    border-radius: 12px;
    width: 90%;
    max-width: 380px;
    text-align: center;
    position: relative;
    border: 1px solid var(--border-color);
    transform: translateY(30px);
    transition: transform 0.3s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1rem;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.call-option {
    display: flex;
    flex-direction: column;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 1.5px solid var(--border-color);
}

.call-option strong {
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: #fff;
}

.call-option span {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.call-option:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.call-option:hover span {
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background-color: #08090a;
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.logo-img-footer {
    height: 80px;
    width: auto;
    border-radius: 4px;
}

.footer p {
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    .about-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-color);
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
        padding: 20px 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
    }

    .nav-menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .mobile-floating-cta {
        display: flex;
    }
}
