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

:root {
    --primary-orange: #FF6B00;
    --dark-gray: #6B6B6B;
    --orange-accent: #FFA500;
    --dark-bg: #0a0816;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text-dark: #333333;
    --text-light: #666666;
}

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

html {
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== HEADER (TRANSPARENT -> WHITE) ========== */
.header {
    background-color: transparent;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
}

.header.scrolled {
    background-color: #6B6B6B;
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    transition: opacity 0.3s ease;
}

.logo-light {
    display: block;
}

.logo-dark {
    display: none;
}

.header.scrolled .logo-light {
    display: none;
}

.header.scrolled .logo-dark {
    display: block;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-nav a i {
    font-size: 10px;
    margin-left: 5px;
}

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

.header.scrolled .main-nav a:hover {
    color: var(--primary-orange);
}

.btn-cta {
    background-color: var(--primary-orange);
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #CC5500;
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

.header.scrolled .mobile-toggle {
    color: var(--text-dark);
}

/* On mobile, keep hamburger white since header is always blue */
@media (max-width: 768px) {
    .header.scrolled .mobile-toggle {
        color: white;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(107, 107, 107, 0.98);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.mobile-menu-inner {
    text-align: center;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.mobile-menu nav ul {
    list-style: none;
}

.mobile-menu nav li {
    margin: 25px 0;
}

.mobile-menu nav a {
    color: white;
    font-size: 22px;
    text-decoration: none;
    font-weight: 500;
}

/* ========== HERO SLIDER - EXACT EXAMPLE MATCH ========== */
.hero-slider-wrapper {
    position: relative;
    height: 80vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    background-color: #3a3a3a;
}

.hero-slider {
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 80vh;
    min-height: 600px;
    max-height: 900px;
    display: flex !important;
    align-items: center;
    /* Vertically centered text */
}

/* Background Image with zoom */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
}

/* Solid blue overlay on left side - ANIMATED */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background-color: rgba(255, 107, 0, 0.88);
    z-index: 2;
    transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Animation: overlay expands to cover full image then contracts */
.slide-overlay.expanding {
    width: 100%;
}

.slide-overlay.contracting {
    width: 40%;
}

/* Bottom darker gradient */
.slide-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    z-index: 1;
}

/* Content positioned center-left */
.slide-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.slide-text {
    max-width: 550px;
    color: white;
}

.slide-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
}

.slide-text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(25px);
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    display: none;
    /* Hide description like example */
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
}

/* Slide animations */
.slick-current .slide-text h1 {
    animation: slideUp 0.6s ease forwards 0.4s;
}

.slick-current .slide-text p {
    animation: slideUp 0.6s ease forwards 0.5s;
}

.slick-current .hero-buttons {
    animation: slideUp 0.6s ease forwards 0.6s;
}

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

/* Image zoom on active slide */
.slick-current .slide-bg img {
    animation: bgZoom 10s ease-out forwards;
}

@keyframes bgZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

/* Buttons - Pill style with arrow */
.btn-primary {
    background-color: transparent;
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.btn-primary:hover {
    background-color: white;
    color: var(--dark-gray);
    border-color: white;
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-outline {
    background-color: transparent;
    color: white;
    padding: 14px 28px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background-color: white;
    color: var(--dark-gray);
    border-color: white;
}

/* Progress Bar Navigation - TRANSPARENT CENTERED */
.progress-nav {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    background-color: transparent;
    padding: 0;
    z-index: 20;
}

.progress-items {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.progress-item {
    cursor: pointer;
    width: 180px;
}

.progress-bar {
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    margin-bottom: 15px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background-color: var(--orange-accent);
}

.progress-item span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 400;
    display: block;
    line-height: 1.4;
}

.progress-item.active span {
    color: white;
}

/* ========== SPOTLIGHT ========== */
.spotlight-section {
    padding: 100px 0;
    background-color: white;
}

.spotlight-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.spotlight-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.highlight-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-bg);
    margin-bottom: 25px;
}

.highlight {
    background-image: linear-gradient(var(--orange-accent), var(--orange-accent));
    background-size: 0% 100%;
    background-repeat: no-repeat;
    background-position: left;
    transition: background-size 0.8s ease-out;
    padding: 0 5px;
}

.highlight.in-view {
    background-size: 100% 100%;
}

.spotlight-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn-text {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-text:hover {
    gap: 15px;
}

/* ========== STATS (YELLOW) ========== */
.stats-section {
    padding: 80px 0;
    background-color: var(--orange-accent);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 72px;
    font-weight: 900;
    color: var(--dark-bg);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: white;
}

/* ========== FEATURE BLOCK ========== */
.feature-block {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* ========== SERVICES SECTION - NEW LAYOUT ========== */
.services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.section-intro {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card-new {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--dark-gray));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(255, 107, 0, 0.15);
}

.service-card-new:hover::before {
    transform: scaleX(1);
}

.service-icon-big {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-gray));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    transition: transform 0.4s ease;
}

.service-card-new:hover .service-icon-big {
    transform: scale(1.1) rotate(5deg);
}

.service-card-new h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.service-card-new>p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.service-tags li {
    background-color: rgba(255, 107, 0, 0.08);
    color: var(--primary-orange);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

/* Service Details */
.service-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: left;
}

.service-details h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-details ul {
    list-style: none;
}

.service-details li {
    font-size: 13px;
    color: var(--text-light);
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.service-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

/* Industry Services List */
.industry-services {
    list-style: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.industry-services li {
    font-size: 12px;
    color: var(--orange-accent);
    padding: 4px 0;
}

.industry-services li::before {
    content: '→ ';
}

/* Feature List (for CFE section) */
.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 14px;
}

.feature-item i {
    color: var(--orange-accent);
}

/* FAQ Categories */
.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.faq-cat-btn {
    background-color: white;
    border: 2px solid rgba(0, 0, 0, 0.1);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.faq-cat-btn:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.faq-cat-btn.active {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
}

/* Form Select */
.form-select {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    margin-bottom: 15px;
    appearance: none;
    cursor: pointer;
}

.form-select option {
    background-color: var(--dark-bg);
    color: white;
}


.feature-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.feature-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(250, 126, 13, 1) 0.42%, rgba(10, 8, 22, 0.7));
}

.feature-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
}

.feature-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 30px;
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    color: white;
    padding: 14px 28px;
    border: 2px solid white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--dark-gray);
}

.eyebrow {
    color: white !important;
}

/* ========== PROJECTS ========== */
.projects-section {
    padding: 80px 0 0 0;
    background-color: var(--dark-bg);
}

.section-header {
    margin-bottom: 50px;
    color: white;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 16px;
    opacity: 0.8;
}

.projects-gallery {
    display: flex;
    height: 500px;
}

.project-item {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: flex 0.5s ease;
    cursor: pointer;
}

.project-item:hover {
    flex: 2;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(10, 8, 22, 0.95), transparent);
    color: white;
}

.project-cat {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--orange-accent);
    margin-bottom: 10px;
}

.project-overlay h3 {
    font-size: 22px;
    font-weight: 600;
}

.project-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
    font-size: 14px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.project-item:hover .project-arrow {
    background: white;
    color: var(--primary-orange);
    transform: translateX(5px);
}

a.project-item {
    text-decoration: none;
    display: block;
}

/* ========== SERVICES ========== */
.services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--dark-bg);
}

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

.service-card {
    background: white;
    padding: 45px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 30px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.12);
    border-color: var(--primary-orange);
}

.service-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-gray));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.service-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-bg);
}

.service-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-keywords {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-keywords li {
    background-color: rgba(255, 107, 0, 0.08);
    color: var(--primary-orange);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* ========== INDUSTRIES ========== */
.industries-section {
    padding: 100px 0;
    background-color: var(--dark-gray);
    color: white;
}

.industries-section .section-title {
    color: white;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: -50px;
    margin-bottom: 60px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.industry-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.industry-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--orange-accent);
}

.industry-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: var(--orange-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--dark-gray);
}

.industry-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
}

.industry-card p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* ========== ABOUT ========== */
.about-section {
    padding: 100px 0;
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark-bg);
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-features {
    margin-top: 30px;
}

.about-features .feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.about-features .feature i {
    color: var(--primary-orange);
    font-size: 20px;
}

.about-features .feature span {
    font-weight: 500;
    color: var(--text-dark);
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
}

/* ========== FAQ ========== */
.faq-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
}

.faq-question:hover {
    background-color: rgba(255, 107, 0, 0.05);
}

.faq-question h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark-bg);
    margin: 0;
}

.faq-question i {
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

/* ========== CONTACT ========== */
.contact-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
    color: white;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-header p {
    font-size: 18px;
    opacity: 0.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 24px;
    color: var(--orange-accent);
    min-width: 30px;
}

.contact-item strong {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-item a {
    color: var(--orange-accent);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item p {
    margin: 0;
    opacity: 0.8;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    margin-bottom: 15px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--orange-accent);
}

/* Phone Input Group */
.phone-input-group {
    display: flex;
    gap: 8px;
    width: 100%;
}

.country-code-select {
    flex: 0 0 110px;
    padding: 15px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    cursor: pointer;
    appearance: none;
}

.country-code-select option {
    background-color: var(--dark-bg);
    color: white;
}

.phone-input-group input[type="tel"] {
    flex: 1;
    margin-bottom: 0;
}

.btn-block {
    width: 100%;
    padding: 16px;
}

/* Form Messages */
#formMessage {
    text-align: center;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#formMessage.success {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #28a745;
}

#formMessage.error {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #dc3545;
}

#formMessage i {
    margin-right: 8px;
}

/* ========== FOOTER ========== */
.footer {
    background-color: #050510;
    color: white;
    padding: 80px 0 30px 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
}

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

.footer-contact p {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.7;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--orange-accent);
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.6;
    margin-bottom: 5px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {

    .spotlight-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

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

@media (max-width: 768px) {

    /* Header Mobile - SOLID gray, not transparent */
    .header {
        background-color: var(--dark-gray);
        padding: 12px 0;
    }

    .main-nav,
    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .logo img {
        height: 35px;
    }

    /* Hero Slider - Taller on mobile, almost full screen */
    .hero-slider-wrapper,
    .hero-slide {
        height: 90vh;
        min-height: 550px;
        max-height: none;
    }

    /* Overlay keeps left position on mobile */
    .slide-overlay {
        width: 40%;
        background-color: rgba(255, 107, 0, 0.88);
    }

    .slide-overlay.contracting {
        width: 40%;
    }

    .slide-overlay.expanding {
        width: 100%;
    }

    /* Text at bottom, LEFT-ALIGNED */
    .slide-content {
        display: flex;
        align-items: flex-end;
        height: 100%;
        padding-bottom: 70px;
    }

    .slide-text {
        max-width: 100%;
        text-align: left;
    }

    .slide-text h1 {
        font-size: 48px;
        line-height: 1.15;
        margin-bottom: 25px;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .hero-buttons .btn-primary {
        padding: 16px 30px;
        font-size: 15px;
    }

    /* Progress Nav - CENTERED at bottom */
    .progress-nav {
        bottom: 0;
        padding: 20px 0;
        background-color: transparent;
    }

    .progress-items {
        justify-content: center;
        gap: 20px;
        padding: 0;
    }

    .progress-item {
        width: 70px;
        flex: none;
    }

    .progress-item span {
        display: none;
    }

    .progress-bar {
        margin-bottom: 0;
        height: 6px;
        border-radius: 3px;
    }

    /* Spotlight Section */
    .spotlight-section {
        padding: 60px 0;
    }

    .spotlight-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .spotlight-image {
        order: -1;
    }

    .spotlight-image img {
        height: 300px;
    }

    .highlight-title {
        font-size: 28px;
    }

    /* Stats */
    .stats-section {
        padding: 50px 0;
    }

    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }

    .stat-number {
        font-size: 48px;
    }

    .stat-label {
        font-size: 16px;
    }

    /* Services */
    .services-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .section-intro {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .services-grid-new {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card-new {
        padding: 30px 25px;
    }

    .service-icon-big {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .service-card-new h3 {
        font-size: 18px;
    }

    /* Feature Block */
    .feature-block {
        height: auto;
        min-height: 400px;
        padding: 60px 0;
    }

    .feature-title {
        font-size: 26px;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    /* Industries */
    .industries-section {
        padding: 60px 0;
    }

    .industries-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .industry-card {
        padding: 25px 20px;
    }

    .industry-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    /* Projects - Horizontal scroll carousel on mobile */
    .projects-section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 25px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .projects-gallery {
        display: flex;
        flex-direction: row;
        height: auto;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding: 0 20px 30px;
        margin: 0 -20px;
    }

    .projects-gallery::-webkit-scrollbar {
        display: none;
    }

    .project-item {
        flex: 0 0 calc(100vw - 60px);
        min-width: calc(100vw - 60px);
        max-width: calc(100vw - 60px);
        flex-shrink: 0 !important;
        height: 450px;
        border-radius: 16px;
        scroll-snap-align: center;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        background-size: cover;
        background-position: center top;
    }

    .project-item:active {
        transform: scale(0.98);
    }

    /* Blue info section at bottom */
    .project-overlay {
        margin-top: auto;
        padding: 25px;
        background: var(--primary-orange);
        height: auto;
        min-height: 150px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .project-cat {
        font-size: 12px;
        margin-bottom: 10px;
        opacity: 0.85;
        letter-spacing: 1px;
    }

    .project-overlay h3 {
        font-size: 22px;
        line-height: 1.25;
        margin-bottom: 15px;
        font-weight: 600;
    }

    /* Arrow button in mobile cards */
    .project-arrow {
        width: 38px;
        height: 38px;
        font-size: 14px;
        margin-top: auto;
    }

    /* About */
    .about-section {
        padding: 60px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text h2 {
        font-size: 26px;
    }

    .about-image img {
        height: 300px;
    }

    /* FAQ */
    .faq-section {
        padding: 60px 0;
    }

    .faq-categories {
        gap: 8px;
        margin-bottom: 30px;
    }

    .faq-cat-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 15px;
    }

    .faq-answer p {
        padding: 0 20px 20px 20px;
        font-size: 14px;
    }

    /* Contact */
    .contact-section {
        padding: 60px 0;
    }

    .contact-header h2 {
        font-size: 26px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 30px 20px;
    }

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

    /* Footer */
    .footer {
        padding: 50px 0 20px 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-brand img {
        height: 40px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .slide-text h1 {
        font-size: 38px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
        text-align: center;
    }

    .stat-number {
        font-size: 40px;
    }

    .service-card-new {
        padding: 25px 20px;
    }
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-decoration: none;
    cursor: pointer;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: #ffffff;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover i {
    transform: scale(1.15);
}

/* Pulse animation */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile optimization */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 15px;
        right: 15px;
        font-size: 26px;
    }
}