@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Inter:wght@300;400;500&display=swap');

:root {
    --primary: #FFCC00;
    --primary-hover: #FFD633;
    --dark: #0A0A0A;
    --dark-light: #121212;
    --white: #FFFFFF;
    --gray: #999999;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

/* Header */
header {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

/* Dropdown Menu Styles */
.dropdown {
    position: relative !important;
    display: inline-block;
}

.dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    transform: translateY(20px);
    background: #121212 !important;
    min-width: 500px !important;
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem !important;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5) !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    /* 3 columns for better fit if many */
    gap: 15px !important;
    z-index: 9999 !important;
}

.dropdown:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(10px) !important;
}

.dropdown-menu a {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
}

.dropdown-menu a:hover {
    background: rgba(255, 204, 0, 0.05);
    color: var(--primary);
    padding-left: 2rem;
}

.dropdown-menu a i {
    font-size: 0.7rem;
    opacity: 0;
    transition: 0.3s;
}

.dropdown-menu a:hover i {
    opacity: 1;
    transform: translateX(5px);
}

.btn-call {
    background: var(--primary);
    color: var(--dark);
    padding: 0.9rem 1.8rem;
    border-radius: 100px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(255, 204, 0, 0.2);
    font-size: 0.95rem;
}

.btn-call:hover {
    transform: translateY(-3px);
    background: var(--white);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1593950315186-76a92975b60c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 700px;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.btn-primary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary);
    padding: 1.1rem 3rem;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.1);
}

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

/* Services Grid */
.services {
    padding: 5rem 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--dark-light);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    background: rgba(255, 204, 0, 0.03);
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft);
}

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

.service-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary);
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--dark-light);
    padding: 4rem 5% 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--gray);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }
}