/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #1f2933;
}

/* Hero Banner */
.hero {
    position: relative;
		background-image:
        linear-gradient(to bottom, rgba(255,255,255,0.55), rgba(100,100,100,0.55)),
        url(images/transmission-lines.jpeg);
    background-size: cover;
    background-position: center;
    min-height: 50vh;
    color: white;
}

/* Navigation */
.nav-container {
	  position: relative;
	  z-index: 2;
		display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
}

.logo {
    height: 65px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 24px;
}

.nav-menu a {
    color: #0099ff;
    text-decoration: none;
    font-weight: 500;
}

.nav-menu a:hover {
  	color: #808080;
}

/* Hero Content */
.hero-overlay {
		position: relative;
		z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 20px 60px;
}

.hero-overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-overlay p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Buttons */
.btn-primary {
    background: #0099ff;
    color: white;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
		border: none;
		cursor: pointer;
}

/* Sections */
.section {
    padding: 70px;
    text-align: center;
}

.alt-bg {
    background: #f4f6f9;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

/* Cards */
.cards {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: #f4f6f9;
    padding: 30px;
    max-width: 300px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Products */
.product-list {
    margin-top: 20px;
}

.product-list li {
    list-style-type: disc;
    list-style-position: inside;
		margin: 10px 0;
    font-weight: 500;
}

/* Contact */
.contact-form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-family: inherit;
}

/* Honeypot */
.hp-field {
    display: none;
}

/* Success Message */
.success-message {
    display: none;
    margin-top: 20px;
    padding: 15px;
    background: #e6f6ee;
    color: #0f7b3e;
    font-weight: 600;
    border-radius: 6px;
    animation: fadeSlide 0.6s ease forwards;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: #1f2933;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }
}
