:root {
    --primary-color: #ffc107; /* Industrial Yellow/Orange */
    --primary-hover: #e0a800;
    
    /* Dark Theme (Default) */
    --bg-body: #212529;
    --bg-surface: #2c3035;
    --bg-surface-alt: #1a1d20;
    --bg-footer: #000000;
    --text-main: #f8f9fa;
    --text-secondary: #adb5bd;
    --nav-bg: rgba(33, 37, 41, 0.95);
    --border-color: rgba(255, 255, 255, 0.1);
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Exo 2', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-main);
}

/* Custom Colors */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

/* Adaptive Backgrounds */
.bg-darker {
    background-color: var(--bg-surface-alt) !important;
}

.bg-dark-card {
    background-color: var(--bg-surface) !important;
}

/* Replaces bg-dark */
.bg-surface {
    background-color: var(--bg-surface) !important;
}

/* Replaces bg-black */
.bg-black {
    background-color: var(--bg-footer) !important;
}

/* Adaptive Text */
.text-light-grey {
    color: var(--text-secondary) !important;
}

.text-adaptive {
    color: var(--text-main) !important;
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary-color);
    color: #000;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline-primary-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-outline-primary-custom:hover {
    background-color: var(--primary-color);
    color: #000;
}

/* Navbar */
.navbar {
    background-color: var(--nav-bg);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: var(--text-main);
}

.navbar-toggler {
    border-color: var(--primary-color);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 193, 7, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin: 0 10px;
    position: relative;
    color: var(--text-main);
}

.nav-link:hover, .nav-link:focus {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: url('https://placehold.co/1920x1080/1a1d20/orange?text=Sandblasting+Background') no-repeat center center/cover;
    position: relative;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

/* Section Padding */
.section-padding {
    padding: 100px 0;
}

/* Feature Cards */
.feature-card-img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.feature-card-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
}

.feature-bg {
    transition: transform 0.5s ease;
}

.feature-card-img:hover .feature-bg {
    transform: scale(1.1);
}

.feature-overlay {
    transition: background 0.3s ease;
}

.feature-card-img:hover .feature-overlay {
    background: rgba(0,0,0,0.4) !important;
}

.feature-card {
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h5 {
    color: var(--text-main) !important;
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 193, 7, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.service-card h4 {
    color: var(--text-main) !important;
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: var(--bg-body) !important; /* Adapt icon bg */
}

/* Gallery */
.gallery-item {
    cursor: pointer;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item img {
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Video Card */
.video-card .play-button {
    width: 60px;
    height: 60px;
    transition: transform 0.3s;
}

.video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card h5 {
    color: var(--text-main) !important;
}

/* Steps */
.step-card {
    background-color: var(--bg-surface) !important;
    border-color: var(--border-color) !important;
}

.step-card h5 {
    color: var(--text-main) !important;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background: var(--text-secondary);
}
.swiper-pagination-bullet-active {
    background: var(--primary-color);
}

/* Swiper Navigation */
.swiper-button-next, .swiper-button-prev {
    color: var(--primary-color);
}

/* Modal */
.service-modal {
    max-width: 900px;
    width: 90%;
    background-color: var(--bg-surface) !important;
    color: var(--text-main) !important;
}

/* Forms & CF7 */
.form-control:focus {
    background-color: var(--bg-body);
    border-color: var(--primary-color);
    color: var(--text-main);
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

.form-control::placeholder {
    color: #6c757d;
}

/* CF7 Specific overrides */
.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-textarea {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background-color: #212529;
    background-clip: padding-box;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    color: #fff;
}

.wpcf7-form-control.wpcf7-text:focus,
.wpcf7-form-control.wpcf7-textarea:focus {
    background-color: var(--bg-body);
    border-color: var(--primary-color);
    color: var(--text-main);
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
    outline: 0;
}

.wpcf7-form-control.wpcf7-submit {
    display: inline-block;
    width: 100%;
    font-weight: 700;
    line-height: 1.5;
    color: #000;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 50rem;
    transition: all 0.3s ease;
}

.wpcf7-form-control.wpcf7-submit:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 0.875em;
    margin-top: 0.25rem;
}

.wpcf7-response-output {
    margin-top: 1rem !important;
    border-radius: 0.375rem !important;
}

/* Map & Footer */
.map-container {
    border: 1px solid var(--border-color);
}

footer {
    border-top-color: var(--border-color) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .display-3 {
        font-size: 2rem;
    }
    .section-padding {
        padding: 60px 0;
    }
}
.text-muted {
    --bs-text-opacity: 1;
    color: #fff !important;
}


.feature-bg{
    background-size: 100%;
}

