/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap');

:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #000000;
    --primary-orange: #ff6b00;
    --secondary-grey: #4a4a4a;
    --text-light: #f5f5f5;
    --text-muted: #a0a0a0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-darker);
    color: var(--text-light);
    line-height: 1.6;
}

/* Navigation */
header {
    background-color: var(--bg-dark);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--secondary-grey);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: conic-gradient(var(--secondary-grey) 0% 25%, var(--primary-orange) 25% 50%, var(--secondary-grey) 50% 75%, var(--primary-orange) 75% 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid var(--primary-orange);
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-light);
    letter-spacing: 2px;
}

.logo-text p {
    font-size: 0.7rem;
    color: var(--primary-orange);
    letter-spacing: 3px;
    text-transform: uppercase;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s;
}

nav a:hover, nav a.active {
    color: var(--primary-orange);
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1581858726788-75bc0f6a952d?auto=format&fit=crop&q=80') center/cover;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 900;
}

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

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2rem;
}

.btn {
    padding: 15px 30px;
    background-color: var(--primary-orange);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: transform 0.2s;
}

.btn:hover {
    transform: scale(1.05);
    background-color: #e65c00;
}

/* Content Sections */
.content-section {
    padding: 5rem 10%;
    text-align: center;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-orange);
    text-transform: uppercase;
}

/* Grid Layouts */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: var(--bg-dark);
    padding: 2rem;
    border: 1px solid var(--secondary-grey);
    border-radius: 8px;
    text-align: left;
}

.card h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}
.gallery-item {
    height: 250px;
    background: var(--secondary-grey);
    border-radius: 4px;
    background-size: cover;
    background-position: center;
}

/* Quote/Lead Gen */
.cf-wrapper {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-top: 5px solid var(--primary-orange);
}
.cf-wrapper iframe {
    width: 100%;
    min-height: 600px;
    border: none;
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    text-align: center;
    padding: 3rem 5%;
    border-top: 1px solid var(--secondary-grey);
    margin-top: auto;
}

.contact-info {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.email {
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.credentials {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}
