/* Hero Section */
.hero-section {
    min-height: calc(100vh - var(--header-height));
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(9, 18, 51, 0.8));
    /* Add a background image rule here later if assets are provided. 
       background-image: url('../assets/hero-bg.jpg');
       background-size: cover;
       background-position: center; 
    */
    position: relative;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2rem, 10vw, 5rem);
    line-height: 1.1;
}

.hero-title span:first-child {
    color: var(--white);
}

.hero-title span:last-child {
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.125rem;
    max-width: 600px;
}

/* Highlights Banner */
.highlights-banner {
    background-color: var(--white);
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
    border-top: 2px solid var(--red);
    border-bottom: 2px solid var(--red);
}

.highlights-scroll {
    color: var(--black);
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.highlights-scroll::-webkit-scrollbar {
    display: none;
}

.highlight-item {
    display: inline-flex;
    align-items: center;
}

/* Precision Section */
.precision-section {
    position: relative;
    overflow: hidden;
}

.text-center {
    text-align: center;
}

/* Process Cards */
.process-card {
    background-color: var(--black);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    border-color: var(--red);
}

.border-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    font-size: 1rem;
}

.card-img-placeholder {
    height: 200px;
    background-color: #1a1a1a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 0.875rem;
}

.text-sm {
    font-size: 0.875rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.bg-structural {
    background-image: url('../assets/img/structural.png');
}

.bg-fabrication {
    background-image: url('../assets/img/fabrication.png');
}

.bg-mobile {
    background-image: url('../assets/img/mobile.png');
}

/* Testimonials */
.testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.avatar-placeholder {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #333;
    border: 2px solid var(--red);
}

.quote-text {
    font-size: 1rem;
    font-style: italic;
    line-height: 1.6;
}

/* FAQ */
.faq-item {
    background-color: var(--black);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
}

.cursor-pointer {
    cursor: pointer;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--red);
    font-weight: 300;
}

/* Benefits */
.benefit-card {
    display: flex;
    flex-direction: column;
}

/* Contact */
.contact-box {
    background-color: var(--black);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.contact-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top left, rgba(234, 27, 73, 0.1), transparent 50%);
    pointer-events: none;
}

.block {
    display: block;
}

.form-input {
    width: 100%;
    background-color: #1a1a1a;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    border-color: var(--red);
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}