/* 
   ALPHA STEEL SERVICES LLC - Global Stylesheet
   Color Palette & Themes based on Logo:
   - Primary: Deep Navy (#0b2545)
   - Secondary: Royal Blue (#134074)
   - Accent: Sky Steel Blue (#00b4d8)
   - Silver/Grey: (#8d99ae)
*/

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

:root {
    --primary: #0b2545;
    --primary-dark: #071930;
    --secondary: #134074;
    --secondary-light: #1d4e89;
    --accent: #00b4d8;
    --accent-dark: #0077b6;
    --accent-light: #e0f2fe;
    --grey-silver: #8d99ae;
    --grey-light: #f8f9fa;
    --grey-border: #e9ecef;
    --grey-dark: #333333;
    --text-color: #2b2d42;
    --text-muted: #6c757d;
    --white: #ffffff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --max-width: 1200px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 6px;
    --border-radius-lg: 12px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
    line-height: 1.25;
}

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

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

/* Common Classes & Layout */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.section {
    padding: 5rem 0;
}

.section-bg {
    background-color: var(--grey-light);
}

.section-dark {
    background-color: var(--primary);
    color: var(--white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
}

.section-subtitle {
    font-family: var(--font-heading);
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}

.section-header.left-aligned {
    text-align: left;
    margin-left: 0;
}

.section-header.left-aligned .section-title::after {
    left: 0;
    transform: none;
}

.lead {
    font-size: 1.15rem;
    color: var(--text-muted);
}

.section-dark .lead {
    color: #b0c4de;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--white);
}

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

.btn-accent {
    background-color: var(--accent);
    color: var(--primary);
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white-outline {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

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

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
}

/* Header & Top Bar */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--white);
    font-size: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info {
    display: flex;
    gap: 1.5rem;
}

.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-info i {
    color: var(--accent);
}

.top-bar-socials {
    display: flex;
    gap: 1rem;
}

.top-bar-socials a:hover {
    color: var(--accent);
}

header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.5rem;
}

.logo img {
    height: 68px;
    width: auto;
    object-fit: contain;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 280px;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    border-top: 3px solid var(--accent);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    list-style: none;
    padding: 0.75rem 0;
    z-index: 100;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.65rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
}

.dropdown-link:hover {
    background-color: var(--grey-light);
    color: var(--secondary);
    padding-left: 1.75rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    background: transparent;
    border: none;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    height: 85vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 37, 69, 0.95) 40%, rgba(19, 64, 116, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.hero-title {
    font-size: 3.25rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: -0.5px;
    animation: fadeInUp 0.8s ease-out forwards;
}

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

.hero-desc {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-btns {
    display: flex;
    gap: 1.25rem;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

/* Statistics Bar */
.stats-bar {
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-lg);
    margin-top: -4rem;
    position: relative;
    z-index: 10;
    padding: 2.5rem;
    border-bottom: 4px solid var(--accent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    border-right: 1px solid var(--grey-border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--grey-silver);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Info Section (Split Layout) */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-image-container {
    position: relative;
}

.split-image-container img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.split-image-container::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100px;
    height: 100px;
    border-top: 5px solid var(--accent);
    border-left: 5px solid var(--accent);
    border-radius: var(--border-radius-lg) 0 0 0;
    z-index: -1;
}

.split-image-container::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    border-bottom: 5px solid var(--secondary);
    border-right: 5px solid var(--secondary);
    border-radius: 0 0 var(--border-radius-lg) 0;
    z-index: -1;
}

.split-content ul {
    list-style: none;
    margin-top: 1.5rem;
}

.split-content li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.85rem;
    font-weight: 500;
}

.split-content li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent);
}

.split-content li.custom-bullet::before {
    content: '✓';
    font-family: var(--font-body);
    font-weight: bold;
}

/* Services Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
    border-top: 4px solid var(--secondary);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--accent);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.service-card:hover .service-icon {
    color: var(--accent);
}

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

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.read-more {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    color: var(--accent);
}

/* Software Licensing Section */
.software-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.software-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 1px;
    min-width: 180px;
    transition: var(--transition);
    color: var(--white);
    opacity: 0.8;
}

.software-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    color: var(--accent);
    opacity: 1;
}

.software-badge span {
    font-size: 0.7rem;
    display: block;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--grey-silver);
}

/* Projects Showcase */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.project-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 350px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(11, 37, 69, 0.95) 15%, rgba(19, 64, 116, 0.4) 100%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
    transition: var(--transition);
}

.project-card:hover .project-image {
    transform: scale(1.08);
}

.project-card:hover .project-overlay {
    background: linear-gradient(to top, rgba(11, 37, 69, 0.98) 30%, rgba(19, 64, 116, 0.6) 100%);
}

.project-category {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.project-title {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.project-details {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    font-size: 0.85rem;
}

.project-card:hover .project-details {
    max-height: 80px;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.project-details span {
    display: block;
    margin-bottom: 0.25rem;
}

/* Testimonials Carousel */
.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 3rem;
}

.testimonial-container {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    text-align: center;
    padding: 1.5rem;
}

.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-quote::before,
.testimonial-quote::after {
    content: '"';
    font-size: 3rem;
    color: var(--accent-light);
    position: absolute;
    line-height: 1;
    font-weight: bold;
}

.testimonial-quote::before {
    top: -20px;
    left: -20px;
}

.testimonial-quote::after {
    bottom: -50px;
    right: -20px;
}

.testimonial-author {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 1px solid var(--grey-border);
    box-shadow: var(--shadow-md);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--primary);
    transition: var(--transition);
}

.carousel-control:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.carousel-control.prev {
    left: -15px;
}

.carousel-control.next {
    right: -15px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--grey-border);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--accent);
    width: 25px;
    border-radius: 10px;
}

/* Call to Action Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--white);
    text-align: center;
    padding: 5rem 1.5rem;
}

.cta-banner h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-banner p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.85);
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: #cbd5e1;
    padding: 5rem 0 2rem 0;
    border-top: 5px solid var(--secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--accent);
}

.footer-about img {
    height: 58px;
    margin-bottom: 1.25rem;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.9rem;
    display: block;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--accent);
    margin-top: 3px;
}

.footer-hours-grid {
    display: grid;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.footer-hours-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.25rem;
}

.footer-hours-row:last-child {
    border-bottom: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
}

.footer-nav a:hover {
    color: var(--accent);
}

/* Page Banner (Subpages) */
.page-banner {
    position: relative;
    height: 280px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(11, 37, 69, 0.95), rgba(19, 64, 116, 0.6));
    z-index: 1;
}

.page-banner-content {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    font-size: 2.75rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.breadcrumbs {
    display: flex;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs a:hover {
    color: var(--accent);
}

.breadcrumbs span {
    color: var(--accent);
}

/* Detailed Page Elements */
.service-details-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 4rem;
}

.service-main-content h2 {
    font-size: 1.85rem;
    margin-bottom: 1.25rem;
    margin-top: 2.5rem;
}

.service-main-content h2:first-of-type {
    margin-top: 0;
}

.service-main-content p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.highlight-box {
    background-color: var(--grey-light);
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-size: 1.05rem;
    font-weight: 500;
    font-style: italic;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.deliverable-item {
    background: var(--white);
    border: 1px solid var(--grey-border);
    padding: 1.25rem;
    border-radius: var(--border-radius);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.deliverable-item i {
    font-size: 1.5rem;
    color: var(--accent);
    background: var(--accent-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.deliverable-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.deliverable-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Service Sidebar */
.sidebar-box {
    background-color: var(--grey-light);
    border: 1px solid var(--grey-border);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    margin-bottom: 2rem;
}

.sidebar-box h3 {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--grey-border);
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu li {
    margin-bottom: 0.75rem;
}

.sidebar-menu a {
    display: block;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid var(--grey-border);
    font-weight: 600;
    font-size: 0.9rem;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.sidebar-cta h3 {
    color: var(--white);
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.sidebar-cta p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

/* Forms & Contacts */
.contact-wrapper {
    display: grid;
    /* grid-template-columns: 1fr 1.5fr;
    gap: 4rem; */
}

.contact-info-panel {
    background: var(--primary);
    color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
}

.contact-info-panel h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info-panel p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-details i {
    font-size: 1.25rem;
    color: var(--accent);
    margin-top: 4px;
}

.contact-details h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-details p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Form Styles */
.form-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--grey-border);
}

.form-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.form-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--grey-border);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-color);
    background-color: var(--grey-light);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    background-color: var(--white);
    box-shadow: 0 0 0 4px var(--accent-light);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.file-upload-wrapper {
    position: relative;
    border: 2px dashed var(--grey-border);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    background-color: var(--grey-light);
    cursor: pointer;
    transition: var(--transition);
}

.file-upload-wrapper:hover {
    border-color: var(--accent);
    background-color: var(--accent-light);
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.file-upload-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.file-upload-text strong {
    color: var(--secondary);
}

/* Quote Calculator Widget */
.quote-widget {
    background: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    margin: 2rem 0;
}

.quote-widget h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.calc-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.calc-result {
    background: var(--accent-light);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

/* Careers/Employment Elements */
.jobs-list {
    margin-top: 3rem;
}

.job-card {
    background: var(--white);
    border: 1px solid var(--grey-border);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.job-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.job-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.job-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 96px;
        /* Offset for Header */
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        height: calc(100vh - 96px);
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        gap: 0;
        overflow-y: auto;
        padding-top: 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 1.25rem;
        justify-content: center;
        border-bottom: 1px solid var(--grey-border);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        border-bottom: 1px solid var(--grey-border);
        background-color: var(--grey-light);
        display: none;
        padding: 0;
    }

    .nav-item:hover .dropdown-menu {
        display: block;
    }

    .dropdown-link {
        padding: 1rem;
    }

    .header-actions {
        display: none;
        /* Hide Quote button on mobile header to save space */
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-item {
        border-right: none;
    }

    .stat-item:nth-child(odd) {
        border-right: 1px solid var(--grey-border);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

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

    .hero-desc {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .service-details-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .deliverables-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .job-card .btn {
        width: 100%;
    }

    .top-bar-info {
        flex-direction: column;
        gap: 0.25rem;
    }

    .top-bar-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none !important;
        border-bottom: 1px solid var(--grey-border);
        padding-bottom: 1rem;
    }

    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .hero-btns {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}