/*
Theme Name: MS WaterJet Cutting
Theme URI: https://mswaterjetcutting.com
Author: MS WaterJet Cutting
Description: Custom professional theme for MS WaterJet Cutting - Precision waterjet cutting services in Orlando & Central Florida
Version: 1.0.6
Text Domain: ms-waterjet
*/

/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */
:root {
    --color-primary: #0a0f1a;
    --color-secondary: #111827;
    --color-accent: #00b4d8;
    --color-accent-dark: #0096b7;
    --color-highlight: #f59e0b;
    --color-highlight-dark: #d97706;
    --color-white: #ffffff;
    --color-light: #f3f4f6;
    --color-gray-100: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-dark-text: #111827;
    --color-body-text: #374151;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --max-width: 1200px;
    --header-height: 80px;
    --transition: 0.3s ease;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-body-text);
    background-color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
    list-style: none;
}

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

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

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

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

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

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

.section-header h2 {
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

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

.section-header p {
    font-size: 1.125rem;
    color: var(--color-gray-500);
    max-width: 700px;
    margin: 20px auto 0;
}

.section--dark .section-header p {
    color: var(--color-gray-400);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

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

.btn--primary:hover {
    background: var(--color-accent-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.4);
}

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

.btn--highlight:hover {
    background: var(--color-highlight-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

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

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

.btn--large {
    padding: 18px 40px;
    font-size: 1rem;
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all var(--transition);
    height: var(--header-height);
}

.site-header.scrolled {
    background: rgba(10, 15, 26, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    height: 70px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo img {
    height: 50px;
    width: auto;
    transition: height var(--transition);
}

.site-header.scrolled .site-logo img {
    height: 40px;
}

.site-logo-text {
    font-family: 'Orbitron', var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--color-white);
    line-height: 1.1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.site-logo-text span {
    display: block;
    font-family: 'Orbitron', var(--font-heading);
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 2px;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 4px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
}

.header-phone svg {
    width: 18px;
    height: 18px;
    fill: var(--color-accent);
}

.header-quote-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: var(--color-accent);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all var(--transition);
}

.header-quote-btn:hover {
    background: var(--color-accent-dark);
    color: var(--color-white);
    transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 15, 26, 0.7) 0%,
        rgba(10, 15, 26, 0.5) 50%,
        rgba(10, 15, 26, 0.8) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(0, 180, 216, 0.15);
    border: 1px solid rgba(0, 180, 216, 0.3);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero h1 .highlight {
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-300);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--color-white);
    font-size: 0.75rem;
    text-align: center;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

.hero-scroll svg {
    display: block;
    margin: 8px auto 0;
    width: 24px;
    height: 24px;
    fill: var(--color-white);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ========================================
   PAGE HERO (inner pages)
   ======================================== */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    background: var(--color-primary);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/pattern.svg') repeat;
    opacity: 0.03;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 16px;
}

.page-hero .breadcrumb {
    font-size: 0.9rem;
    color: var(--color-gray-400);
}

.page-hero .breadcrumb a {
    color: var(--color-accent);
}

.page-hero .breadcrumb span {
    margin: 0 8px;
}

/* ========================================
   SERVICES GRID
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--color-white);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition);
    border: 1px solid var(--color-gray-100);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-accent);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 50%;
    transition: all var(--transition);
}

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

.service-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--color-accent);
    transition: fill var(--transition);
}

.service-card:hover .service-icon svg {
    fill: var(--color-white);
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--color-gray-500);
    line-height: 1.6;
}

/* Dark variant for services */
.section--dark .service-card {
    background: var(--color-secondary);
    border-color: rgba(255, 255, 255, 0.05);
}

.section--dark .service-card h3 {
    color: var(--color-white);
}

.section--dark .service-card p {
    color: var(--color-gray-400);
}

/* 4-column industries grid */
.services-grid--4col {
    grid-template-columns: repeat(4, 1fr);
}

.services-grid--4col .service-card {
    padding: 30px 20px;
}

/* ========================================
   ABOUT SECTION (split layout)
   ======================================== */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

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

.about-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 16px 24px;
    border-radius: 8px;
    text-align: center;
}

.about-image-badge .number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.about-image-badge .label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text .lead {
    font-size: 1.1rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 16px;
}

.about-text p {
    color: var(--color-gray-600);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-feature svg {
    width: 24px;
    height: 24px;
    fill: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.about-feature span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-dark-text);
}

/* ========================================
   STATS COUNTER
   ======================================== */
.stats-section {
    background: var(--color-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.05), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   FEATURED WORK / GALLERY
   ======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 15, 26, 0.8), transparent);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-info h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 4px;
}

.gallery-item-info p {
    color: var(--color-gray-400);
    font-size: 0.8rem;
}

/* Full gallery page */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.gallery-filter-btn {
    padding: 8px 24px;
    background: transparent;
    border: 2px solid var(--color-gray-300);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gray-600);
    cursor: pointer;
    transition: all var(--transition);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
}

/* ========================================
   EQUIPMENT SECTION
   ======================================== */
.equipment-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.equipment-image {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.equipment-image img {
    width: 100%;
    border-radius: 8px;
}

.equipment-specs {
    margin-top: 30px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-gray-100);
}

.section--dark .spec-item {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.spec-label {
    font-weight: 600;
    color: var(--color-gray-500);
    font-size: 0.9rem;
}

.section--dark .spec-label {
    color: var(--color-gray-400);
}

.spec-value {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-accent);
    font-size: 1rem;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--color-accent), #0077b6);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--color-white);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 32px;
}

.cta-section .btn--outline {
    border-color: var(--color-white);
    color: var(--color-white);
}

.cta-section .btn--outline:hover {
    background: var(--color-white);
    color: var(--color-accent);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--color-white);
    border-radius: 8px;
    padding: 32px;
    border: 1px solid var(--color-gray-100);
    position: relative;
}

.section--dark .testimonial-card {
    background: var(--color-secondary);
    border-color: rgba(255, 255, 255, 0.05);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--color-highlight);
}

.testimonial-text {
    font-style: italic;
    color: var(--color-gray-600);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.section--dark .testimonial-text {
    color: var(--color-gray-400);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-white);
    font-size: 1.1rem;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-dark-text);
}

.section--dark .testimonial-name {
    color: var(--color-white);
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--color-gray-500);
}

/* ========================================
   CONTACT / QUOTE FORM
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: rgba(0, 180, 216, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-accent);
}

.contact-info-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--color-gray-500);
}

.contact-info-card a {
    color: var(--color-accent);
    font-weight: 600;
}

.contact-map {
    border-radius: 8px;
    overflow: hidden;
    margin-top: 32px;
}

.contact-map iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--color-dark-text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--color-gray-100);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition);
    background: var(--color-white);
    color: var(--color-dark-text);
}

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

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

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

/* Contact Form 7 overrides */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--color-gray-100);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition);
}

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

.wpcf7 input[type="submit"] {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background: var(--color-accent);
    color: var(--color-white);
    transition: all var(--transition);
}

.wpcf7 input[type="submit"]:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
}

.wpcf7 .wpcf7-file {
    padding: 10px;
}

/* ========================================
   ABOUT PAGE SPECIFICS
   ======================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 24px;
}

.value-card .value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-card .value-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--color-accent);
}

.value-card h3 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.value-card p {
    color: var(--color-gray-500);
    font-size: 0.9rem;
}

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

.team-card {
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--color-gray-100);
}

.team-card-image {
    height: 300px;
    overflow: hidden;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.05);
}

.team-card-info {
    padding: 20px;
}

.team-card-info h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.team-card-info p {
    color: var(--color-gray-500);
    font-size: 0.85rem;
}

/* ========================================
   SERVICES PAGE
   ======================================== */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--color-gray-100);
}

.service-detail:nth-child(even) {
    direction: rtl;
}

.service-detail:nth-child(even) > * {
    direction: ltr;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail-image {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.service-detail-content p {
    color: var(--color-gray-600);
    margin-bottom: 16px;
}

.capability-list {
    margin-top: 20px;
}

.capability-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--color-gray-600);
}

.capability-list li svg {
    width: 18px;
    height: 18px;
    fill: var(--color-accent);
    flex-shrink: 0;
}

/* ========================================
   FAQ PAGE
   ======================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-gray-100);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--color-dark-text);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    fill: var(--color-accent);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

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

.faq-answer-inner {
    padding: 0 0 20px;
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: var(--color-primary);
    color: var(--color-gray-400);
    padding: 80px 0 0;
}

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

.footer-brand .site-logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-gray-400);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

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

.footer-social a svg {
    width: 18px;
    height: 18px;
    fill: var(--color-gray-400);
    transition: fill var(--transition);
}

.footer-social a:hover svg {
    fill: var(--color-white);
}

.footer-column h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--color-gray-400);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-column ul li a:hover {
    color: var(--color-accent);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    fill: var(--color-accent);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact-item a {
    color: var(--color-gray-400);
}

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

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
    fill: var(--color-white);
}

/* ========================================
   MOBILE FLOATING BAR
   ======================================== */
.mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--color-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
}

.mobile-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
}

.mobile-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-bar .mobile-call {
    background: var(--color-accent);
    color: var(--color-white);
}

.mobile-bar .mobile-quote {
    background: var(--color-highlight);
    color: var(--color-white);
}

.mobile-bar svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   RESPONSIVE - TABLET (max-width: 1024px)
   ======================================== */
@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .section { padding: 70px 0; }

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

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

    .about-split,
    .equipment-showcase,
    .service-detail,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail:nth-child(even) {
        direction: ltr;
    }

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

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

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

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

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

/* ========================================
   RESPONSIVE - MOBILE (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }

    .section { padding: 50px 0; }
    .section-header { margin-bottom: 40px; }

    /* Header Mobile */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--color-primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        transition: right var(--transition);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav a {
        font-size: 1.1rem;
    }

    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    /* Hero Mobile */
    .hero {
        min-height: 100svh;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-scroll {
        display: none;
    }

    /* Page hero mobile */
    .page-hero {
        padding: 120px 0 50px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    /* Services */
    .services-grid,
    .services-grid--4col {
        grid-template-columns: 1fr 1fr;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Values */
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    /* CTA */
    .cta-section h2 {
        font-size: 1.75rem;
    }

    /* Mobile bar */
    .mobile-bar {
        display: block;
    }

    body {
        padding-bottom: 80px;
    }

    /* About features */
    .about-features {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }

    .container { padding: 0 16px; }

    .hero h1 { font-size: 1.85rem; }

    .btn { padding: 12px 24px; font-size: 0.85rem; }
    .btn--large { padding: 14px 32px; }

    .service-card { padding: 30px 20px; }

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

    .stat-number { font-size: 2rem; }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .site-header,
    .mobile-bar,
    .hero-video,
    .lightbox {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    body {
        color: #000;
        background: #fff;
    }
}
