/* City Insulation and Sheet Metal Works CC - Premium Modern Stylesheet */

/* ========================================
   CSS Variables - Custom Color Scheme (CISMW Logo Colors)
   Black, Gray & Red Theme with Whitesmoke Header
   ======================================== */
:root {
    /* CISMW Logo Color Palette - Black/Gray/Red Theme */
    --cismw-red: #B8252C;
    --cismw-red-dark: #8A1C22;
    --cismw-red-light: #D94A52;
    --cismw-burgundy: #6B1419;
    --cismw-gray: #6E7073;
    --cismw-gray-light: #A8A9AD;
    --cismw-gray-lighter: #D1D3D6;
    --cismw-gray-lightest: #f5f5f5;
    --deep-charcoal: #1A1A1A;
    --black: #000000;
    --cloud-white: #FFFFFF;
    --whitesmoke: #F5F5F5;
    
    /* Derived Colors */
    --primary-color: var(--cismw-red);
    --primary-dark: var(--cismw-red-dark);
    --primary-light: var(--cismw-red-light);
    --secondary-color: var(--cismw-gray);
    --accent-color: var(--cismw-red);
    --text-dark: var(--deep-charcoal);
    --text-medium: var(--cismw-gray);
    --text-light: #9a9b9e;
    --bg-light: var(--whitesmoke);
    --bg-white: var(--cloud-white);
    --border-color: var(--cismw-gray-lighter);
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1280px;
}

/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 140px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Scroll to Top Button
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--cismw-red), var(--cismw-red-dark));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 20px rgba(184, 37, 45, 0.4);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--cismw-red-dark);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(184, 37, 45, 0.5);
}

/* ========================================
   Page Loader
   ======================================== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-content .logo-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-text {
    font-size: 14px;
    color: var(--cismw-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ========================================
   Custom Cursor
   ======================================== */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    display: none;
}

@media (min-width: 992px) {
    .cursor-dot,
    .cursor-outline {
        display: block;
    }
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--cismw-red);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--cismw-red);
    transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
}

.cursor-outline.hover {
    width: 50px;
    height: 50px;
    background: rgba(184, 37, 45, 0.1);
    border-color: var(--cismw-red-dark);
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Load Animation */
@keyframes pageLoad {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

body {
    animation: pageLoad 0.5s ease-out;
}

/* Header Animation on Load */
.site-header {
    animation: fadeInDown 0.6s ease-out;
}

/* Animate on scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Hero text animations */
.animate-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.animate-text.delay-1 {
    animation-delay: 0.2s;
}

.animate-text.delay-2 {
    animation-delay: 0.4s;
}

.animate-text.delay-3 {
    animation-delay: 0.6s;
}

/* Hover animations */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(184, 37, 45, 0.3);
}

/* Card hover effects */
.feature-card, .product-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover, .product-card:hover {
    transform: translateY(-12px);
}

/* Button animations */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

/* Gradient text effect */
.gradient-text {
    background: linear-gradient(135deg, var(--cismw-red), var(--cismw-red-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Floating animation for decorative elements */
.floating {
    animation: float 3s ease-in-out infinite;
}

.floating-delayed {
    animation: float 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Parallax-like effect */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Skew reveal animation */
.skew-reveal {
    position: relative;
    overflow: hidden;
}

.skew-reveal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    transform: skewY(-5deg);
    transform-origin: left bottom;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.skew-reveal.revealed::after {
    transform: skewY(0);
}

/* ========================================
   Header Styles - Clean White Header
   ======================================== */
.site-header {
    background: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.site-header.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.site-header.scrolled .container {
    padding: 8px 40px;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    transition: padding 0.3s ease;
    gap: 40px;
    flex: 1;
}

.site-header.scrolled .header-main {
    padding: 0;
}

/* Contact Phone - Modern Button Style */
.header-contact {
    flex-shrink: 0;
}

.header-contact .contact-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--cismw-red), var(--cismw-red-dark));
    color: white;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(184, 37, 45, 0.3);
}

.header-contact .contact-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 37, 45, 0.4);
}

.header-contact .contact-phone svg {
    flex-shrink: 0;
}

/* Header Container */
.site-header .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--cismw-red) 0%, var(--cismw-red-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(184, 37, 45, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.logo:hover .logo-icon {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(184, 37, 45, 0.4);
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--deep-charcoal);
    line-height: 1.2;
    transition: color 0.3s ease;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--cismw-red);
}

.logo-tagline {
    font-size: 10px;
    font-weight: 600;
    color: var(--cismw-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-top: 2px;
}

/* Header CTA Button */
.header-cta {
    display: flex;
    align-items: center;
}

.btn-quote {
    background: linear-gradient(135deg, var(--cismw-red) 0%, var(--cismw-red-dark) 100%);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(184, 37, 45, 0.3);
}

.btn-quote:hover {
    background: linear-gradient(135deg, var(--cismw-red-light) 0%, var(--cismw-red) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(184, 37, 45, 0.4);
}

.logo-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--cismw-red) 0%, var(--cismw-red-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(184, 37, 45, 0.3);
    transition: all 0.3s ease;
}

.logo:hover .logo-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(184, 37, 45, 0.4);
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--deep-charcoal);
    line-height: 1.1;
    transition: color 0.3s ease;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--cismw-red);
}

.logo-tagline {
    font-size: 12px;
    font-weight: 500;
    color: var(--cismw-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-top: 2px;
}

.logo-text span {
    color: var(--cismw-red);
    position: relative;
}

.logo-tagline {
    font-size: 11px;
    color: var(--cismw-gray);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 600;
    display: block;
    margin-top: 4px;
    position: relative;
}

.logo-tagline::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--cismw-red), transparent);
    margin-top: 6px;
    border-radius: 2px;
}

/* Header contact styles removed */

/* Main Content */
.site-main {
    padding-top: 40px;
    min-height: calc(100vh - 200px);
}

/* Navigation */
.main-nav {
    padding: 0;
    background: transparent;
    border-top: none;
    position: relative;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 18px;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-toggle:hover {
    transform: scale(1.1);
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 2.5px;
    background-color: var(--deep-charcoal);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    padding: 0 15px;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-weight: 500;
    font-size: 14px;
    color: var(--deep-charcoal);
    position: relative;
    border-radius: 8px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.2px;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--cismw-red);
    background: rgba(184, 37, 45, 0.08);
}

/* Nav link icon */
.nav-menu li a .nav-icon {
    font-size: 16px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.nav-menu li a:hover .nav-icon,
.nav-menu li a.active .nav-icon {
    opacity: 1;
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--cismw-red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-menu li a:hover::before,
.nav-menu li a.active::before {
    width: 30px;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 37, 45, 0.1), rgba(184, 37, 45, 0.04));
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--cismw-red);
    transform: translateY(-2px);
}

.nav-menu li a:hover::before,
.nav-menu li a.active::before {
    width: 30px;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    opacity: 1;
}

/* CTA Button in nav */
.nav-menu li a.cta-button {
    background: linear-gradient(135deg, var(--cismw-red), var(--cismw-red-dark));
    color: white;
    padding: 12px 24px;
    margin-left: 10px;
}

.nav-menu li a.cta-button::before {
    display: none;
}

.nav-menu li a.cta-button::after {
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
}

.nav-menu li a.cta-button:hover {
    box-shadow: 0 8px 25px rgba(184, 37, 45, 0.4);
}

/* Mobile Menu */
@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
        z-index: 1001;
        position: relative;
    }
    
    .nav-toggle span {
        background-color: #1a1a1a;
    }
    
    .site-header {
        z-index: 9999;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #1a1a1a;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding-top: 100px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        transform: scale(0.9);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu li a {
        font-size: 24px;
        padding: 18px 40px;
        color: #ffffff;
        width: 100%;
        display: block;
        text-align: center;
        justify-content: center;
    }
    
    /* Mobile Header Styles */
    .top-bar {
        display: none;
    }
    
    .header-main {
        padding: 12px 0;
    }
    
    .header-cta {
        display: none;
    }
    
    .nav-menu {
        top: 0;
    }
}

/* ========================================
   Hero Slider
   ======================================== */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    margin-top: 0;
}

.slider-container {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 100px 0;
}

.slide h1 {
    font-size: 56px;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
}

.slide p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.slide-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: 30%;
    animation: float 4s ease-in-out infinite 1s;
}

/* Slider Controls */
.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: white;
    transform: scale(1.3);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: rgba(255,255,255,0.4);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }

/* ========================================
   Button Styles
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cismw-red), var(--cismw-red-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(184, 37, 45, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 37, 45, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--cismw-red);
    border-color: white;
}

.btn-secondary:hover {
    background: var(--deep-charcoal);
    border-color: var(--deep-charcoal);
    color: white;
}

.btn-white {
    background: white;
    color: var(--cismw-red);
}

.btn-white:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-3px);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--cismw-red);
}

/* ========================================
   Section Styles
   ======================================== */
.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--cismw-red), var(--cismw-red-light));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--deep-charcoal);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 18px;
    color: var(--metallic-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Features Section
   ======================================== */
.features {
    padding: 120px 0;
    background: linear-gradient(180deg, #f0f1f3 0%, #e8e9eb 50%, #f0f1f3 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Shapes */
.features-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.features-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    animation: float 20s infinite ease-in-out;
}

.features-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--cismw-red), var(--cismw-burgundy));
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.features-shape.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--metallic-silver), var(--metallic-dark));
    bottom: -50px;
    left: -50px;
    animation-delay: 5s;
}

.features-shape.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--cismw-red-light), var(--cismw-red));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg);
    }
    75% {
        transform: translate(20px, 30px) rotate(270deg);
    }
}

.features .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(184, 37, 45, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 37, 45, 0.05) 0%, rgba(107, 20, 25, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(184, 37, 45, 0.2);
    border-color: var(--cismw-red);
    background: rgba(255, 255, 255, 0.95);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card-inner {
    position: relative;
    padding: 45px 35px;
    z-index: 1;
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 0 28px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(184, 37, 45, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(184, 37, 45, 0.1);
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(184, 37, 45, 0.3);
    border-color: var(--cismw-red);
}

.icon-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 37, 45, 0.05) 0%, rgba(184, 37, 45, 0) 100%);
    border-radius: 20px;
    top: 0;
    left: 0;
}

.feature-icon svg {
    color: var(--cismw-red);
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(184, 37, 45, 0.2));
}

.feature-content {
    text-align: left;
}

.feature-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000000 !important;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-content h3 {
    color: #000000 !important;
}

.feature-content p {
    color: #000000 !important;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 72px;
    font-weight: 900;
    color: rgba(184, 37, 45, 0.05);
    line-height: 1;
    transition: all 0.5s ease;
    z-index: 0;
}

.feature-card:hover .feature-number {
    color: rgba(184, 37, 45, 0.1);
    transform: scale(1.2);
}

/* Responsive Design for Features */
@media (max-width: 968px) {
    .features {
        padding: 80px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .feature-card-inner {
        padding: 35px 28px;
    }
    
    .feature-icon {
        width: 75px;
        height: 75px;
        margin-bottom: 22px;
    }
    
    .feature-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .feature-content h3 {
        font-size: 21px;
    }
    
    .feature-content p {
        font-size: 14px;
    }
    
    .feature-number {
        font-size: 56px;
        top: 15px;
        right: 20px;
    }
    
    .features-shape.shape-1 {
        width: 250px;
        height: 250px;
    }
    
    .features-shape.shape-2 {
        width: 200px;
        height: 200px;
    }
    
    .features-shape.shape-3 {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .features {
        padding: 60px 0;
    }
    
    .feature-card-inner {
        padding: 30px 24px;
    }
    
    .feature-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 20px;
        border-radius: 16px;
    }
    
    .feature-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .feature-content h3 {
        font-size: 19px;
        margin-bottom: 12px;
    }
    
    .feature-content p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .feature-number {
        font-size: 48px;
    }
}

/* ========================================
   Products Section
   ======================================== */
.products {
    padding: 100px 0;
    background: #f8f9fa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    height: 220px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    transition: var(--transition);
    color: var(--cismw-red);
}

.product-image svg {
    color: var(--cismw-red-dark);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-content {
    padding: 28px;
}

.product-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--deep-charcoal);
}

.product-content p {
    color: var(--metallic-gray);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--cismw-red);
    margin-bottom: 20px;
}

.btn-outline {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    background: transparent;
    color: var(--cismw-red);
    border: 2px solid var(--cismw-red);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--cismw-red);
    color: white;
}

/* ========================================
   Industries Section
   ======================================== */
.industries-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.92) 0%, rgba(107, 20, 25, 0.88) 100%),
                url('https://images.unsplash.com/photo-1565715101995-4a28d6e4b9a5?w=1920&q=80') center/cover no-repeat fixed;
    position: relative;
    overflow: hidden;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(184, 37, 45, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.industries-section .container {
    position: relative;
    z-index: 1;
}

.industries-section .section-header {
    text-align: center;
    margin-bottom: 20px;
}

.industries-section .section-tag {
    background: rgba(184, 37, 45, 0.9);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 12px 28px;
    box-shadow: 0 4px 15px rgba(184, 37, 45, 0.4);
}

.industries-section .section-header h2 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-top: 20px;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.industries-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin: 0 auto;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.industry-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 37, 45, 0.3) 0%, rgba(107, 20, 25, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.industry-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(184, 37, 45, 0.4);
    border-color: var(--cismw-red);
    background: rgba(255, 255, 255, 0.15);
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
}

/* Responsive Design for Industries */
@media (max-width: 968px) {
    .industries-section {
        padding: 80px 0;
        background-attachment: scroll;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
    
    .industry-card {
        padding: 30px 20px;
    }
    
    .industry-card h3 {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .industries-section {
        padding: 60px 0;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .industry-card {
        padding: 25px 20px;
    }
    
    .industry-card h3 {
        font-size: 17px;
    }
}

/* ========================================
   Materials Section
   ======================================== */
.materials-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.materials-list {
    margin-top: 30px;
}

.materials-list h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--deep-charcoal);
    margin-bottom: 10px;
    margin-top: 20px;
}

.materials-list h4:first-child {
    margin-top: 0;
}

.materials-list p {
    font-size: 15px;
    color: var(--metallic-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    padding: 100px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    background: linear-gradient(135deg, #fce4e4 0%, #fad4d5 100%);
    border-radius: 16px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-img-wrapper {
    position: relative;
}

.about-emoji {
    font-size: 150px;
    display: block;
    animation: float 4s ease-in-out infinite;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--deep-charcoal);
    line-height: 1.2;
}

.about-content p {
    color: var(--metallic-gray);
    margin-bottom: 20px;
    font-size: 16px;
}

.about-stats {
    display: flex;
    gap: 50px;
    margin: 35px 0;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--cismw-red);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--metallic-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

/* ========================================
   Clients Section
   ======================================== */
.clients-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.client-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

.client-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--cismw-red);
}

.client-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--cismw-red), var(--cismw-burgundy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.client-card:hover .client-logo {
    transform: scale(1.1) rotate(5deg);
}

.client-emoji {
    font-size: 36px;
}

.client-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--deep-charcoal);
    margin-bottom: 12px;
}

.client-card p {
    font-size: 15px;
    color: var(--metallic-gray);
    line-height: 1.6;
}

/* ========================================
   Reviews Section
   ======================================== */
.reviews-section {
    padding: 100px 0;
    background: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--cismw-red);
}

.review-stars {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffc107;
}

.review-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cismw-red), var(--cismw-burgundy));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--deep-charcoal);
    margin-bottom: 4px;
}

.author-info p {
    font-size: 14px;
    color: var(--metallic-gray);
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cismw-red), var(--cismw-burgundy));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
    background-size: 200px;
    opacity: 0.5;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.contact-form h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--deep-charcoal);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--deep-charcoal);
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-light);
    color: var(--deep-charcoal);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--cismw-red);
    background: white;
    box-shadow: 0 0 0 4px rgba(184, 37, 45, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.error-message {
    color: #dc3545;
    font-size: 13px;
    margin-top: 6px;
    display: none;
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #dc3545;
}

.contact-info-box {
    background: linear-gradient(135deg, var(--cismw-red), var(--cismw-red-dark));
    padding: 50px;
    border-radius: 16px;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-info-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.contact-info-box h3 {
    font-size: 28px;
    margin-bottom: 35px;
    position: relative;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 30px;
    position: relative;
}

.contact-item-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 600;
}

.contact-item-text p {
    opacity: 0.9;
    font-size: 15px;
    line-height: 1.5;
}

/* ========================================
   ELEGANT FOOTER STYLES
   ======================================== */
.site-footer {
    background: var(--deep-charcoal);
    color: #ffffff;
    position: relative;
    padding-top: 0;
    margin-top: 0;
}

.footer-wave {
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    height: 80px;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.footer-main {
    background: linear-gradient(180deg, #0f0f0f 0%, var(--deep-charcoal) 100%);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: white;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--cismw-red), var(--cismw-red-light));
    border-radius: 3px;
}

.footer-section ul li {
    margin-bottom: 14px;
}

.footer-section ul li a {
    color: var(--metallic-gray);
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-left: 0;
    display: inline-block;
}

.footer-section ul li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--cismw-red-light);
}

.footer-section ul li a:hover {
    color: var(--cismw-red-light);
    padding-left: 15px;
    transform: translateX(5px);
}

.footer-section ul li a:hover::before {
    left: -5px;
    opacity: 1;
}

/* Brand Footer Section */
.footer-brand {
    padding-right: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
}

.footer-logo span {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.footer-logo span span {
    color: var(--cismw-red-light);
}

.footer-brand p {
    color: var(--metallic-gray);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--cismw-red);
    transform: translateY(-3px);
}

/* Contact Info */
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-contact .contact-icon {
    font-size: 18px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact span:last-child {
    color: var(--metallic-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: var(--metallic-gray);
    font-size: 14px;
}

.footer-bottom a {
    color: var(--metallic-gray);
    margin: 0 8px;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--cismw-red-light);
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-slider {
        min-height: 600px;
    }
    
    .slide h1 {
        font-size: 42px;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .logo {
        text-align: center;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #1a1a1a;
        padding: 100px 20px 20px;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu li a {
        border-radius: 10px;
        color: #ffffff;
        width: 100%;
        display: block;
        text-align: center;
        padding: 18px 40px;
        font-size: 22px;
    }
    
    .hero-slider {
        min-height: 500px;
    }
    
    .slide h1 {
        font-size: 32px;
    }
    
    .slide p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .section-header h2,
    .about-content h2,
    .cta-content h2 {
        font-size: 32px;
    }
    
    .features,
    .products,
    .industries-section,
    .materials-section,
    .about-section,
    .contact-section,
    .clients-section,
    .reviews-section,
    .cta-section {
        padding: 70px 0;
    }
    
    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-image {
        height: 350px;
    }
    
    .about-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .slider-arrow {
        display: none;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .slide h1 {
        font-size: 26px;
    }
    
    .contact-form,
    .contact-info-box {
        padding: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

/* ========================================
   Services Page Styles
   ======================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--cismw-red) 0%, var(--cismw-red-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.page-header-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 15px 0;
}

.page-header-content p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--deep-charcoal);
}

.service-content p {
    color: var(--metallic-gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
}

/* Service Overview */
.service-overview {
    padding: 80px 0;
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 60px;
    align-items: center;
}

.overview-icon {
    font-size: 100px;
    text-align: center;
}

.overview-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--deep-charcoal);
}

.overview-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--metallic-gray);
}

/* Service Details */
.service-details {
    padding: 80px 0;
    background: var(--bg-light);
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.details-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.details-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--deep-charcoal);
}

.benefits-list,
.applications-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li,
.applications-list li {
    padding: 12px 0;
    font-size: 15px;
    color: var(--metallic-gray);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
}

.benefits-list li:last-child,
.applications-list li:last-child {
    border-bottom: none;
}

.check-icon {
    color: var(--cismw-red);
    font-weight: bold;
    font-size: 16px;
}

.arrow-icon {
    color: var(--cismw-red);
    font-size: 14px;
}

/* Materials Section */
.materials-section {
    padding: 100px 0;
    background: white;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.material-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.material-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: var(--shadow-lg);
}

.material-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.material-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--deep-charcoal);
    margin: 0;
}

/* Service CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cismw-red), var(--cismw-burgundy));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(15deg);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Responsive Styles for Services */
@media (max-width: 1024px) {
    .services-grid,
    .materials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .overview-icon {
        font-size: 80px;
    }
}

@media (max-width: 768px) {
    .page-header-content h1 {
        font-size: 32px;
    }
    
    .services-grid,
    .materials-grid,
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .overview-content h2 {
        font-size: 28px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ========================================
   Projects Page Styles
   ======================================== */

/* Page Hero */
.page-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cismw-red) 0%, var(--cismw-red-dark) 100%);
    overflow: hidden;
    padding: 120px 0 100px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.stat-item .stat-number.counting {
    animation: countPop 0.3s ease;
}

@keyframes countPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.stat-item .stat-label {
    font-size: 14px;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

/* Projects Section */
.projects-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--cismw-red), var(--cismw-red-dark));
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--deep-charcoal);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--metallic-gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-header.light h2 {
    color: white;
}

.section-header.light p {
    color: rgba(255,255,255,0.8);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: var(--delay);
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.project-image {
    height: 240px;
    background: linear-gradient(135deg, #fce4e4 0%, #fad4d5 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-placeholder .placeholder-icon {
    font-size: 72px;
    opacity: 0.8;
}

.project-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.project-year {
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.project-content {
    padding: 30px;
}

.project-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--cismw-red), var(--cismw-red-dark));
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.project-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--deep-charcoal);
    margin-bottom: 12px;
    line-height: 1.3;
}

.project-description {
    font-size: 14px;
    color: var(--metallic-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.project-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.meta-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--metallic-gray);
}

.meta-location svg {
    color: var(--cismw-red);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cismw-red);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.project-link:hover {
    gap: 12px;
    color: var(--cismw-red-dark);
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cismw-red) 0%, var(--cismw-red-dark) 100%);
    position: relative;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

/* ========================================
   Gallery Page Styles
   ======================================== */

.gallery-hero {
    background: linear-gradient(135deg, var(--cismw-red) 0%, var(--cismw-red-dark) 100%);
}

/* Gallery Filters */
.gallery-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 28px;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--metallic-gray);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn:hover {
    border-color: var(--cismw-red);
    color: var(--cismw-red);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--cismw-red), var(--cismw-red-dark));
    border-color: var(--cismw-red);
    color: white;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.gallery-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    cursor: pointer;
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: var(--delay);
    opacity: 0;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.gallery-image {
    height: 220px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-placeholder .placeholder-icon {
    font-size: 64px;
    opacity: 0.8;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-actions {
    display: flex;
    gap: 10px;
}

.gallery-zoom {
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--deep-charcoal);
}

.gallery-zoom:hover {
    background: var(--cismw-red);
    color: white;
    transform: scale(1.1);
}

.gallery-info {
    padding: 25px;
}

.gallery-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--cismw-red), var(--cismw-red-dark));
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.gallery-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--deep-charcoal);
    margin-bottom: 8px;
    line-height: 1.3;
}

.gallery-description {
    font-size: 13px;
    color: var(--metallic-gray);
    line-height: 1.6;
}

/* Gallery Stats */
.gallery-stats {
    padding: 80px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-card .stat-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.stat-card .stat-content {
    display: flex;
    flex-direction: column;
}

.stat-card .stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--deep-charcoal);
    line-height: 1;
}

.stat-card .stat-label {
    font-size: 14px;
    color: var(--metallic-gray);
    margin-top: 5px;
}

/* Industries Section */
.industries-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
}

.industry-card {
    background: white;
    padding: 35px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.industry-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.industry-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--deep-charcoal);
    margin-bottom: 10px;
    line-height: 1.3;
}

.industry-card p {
    font-size: 12px;
    color: var(--metallic-gray);
    line-height: 1.5;
}

/* CTA Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: white;
    color: var(--cismw-red);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--cismw-red);
}

/* Responsive Styles for Projects & Gallery */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 400px;
        padding: 100px 0 80px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .stat-item .stat-number {
        font-size: 36px;
    }
    
    .projects-grid,
    .features-grid,
    .gallery-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}
