/* ============================================
   Alan Mosgrove Ltd - Main Stylesheet
   Steel Stockholders & Fabricators
   ============================================ */

/* --------------------------------------------
   CSS Variables
   -------------------------------------------- */
:root {
    /* Primary Colors */
    --primary-color: #1a3a5c;
    --primary-dark: #0f2540;
    --primary-light: #2a5a8c;

    /* Accent Colors */
    --accent-color: #e67e22;
    --accent-dark: #d35400;
    --accent-light: #f39c12;

    /* Neutral Colors */
    --dark-gray: #2c3e50;
    --medium-gray: #5a6c7d;
    --light-gray: #95a5a6;
    --lighter-gray: #ecf0f1;
    --white: #ffffff;

    /* Text Colors */
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #7a7a7a;

    /* Fonts */
    --font-primary: 'Roboto', sans-serif;
    --font-heading: 'Oswald', sans-serif;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

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

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

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

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

/* --------------------------------------------
   Section Styles
   -------------------------------------------- */
.section-padding {
    padding: 80px 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.bg-light {
    background-color: #f8f9fa !important;
}

/* --------------------------------------------
   Buttons
   -------------------------------------------- */
.btn {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

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

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

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

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

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

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

.btn-lg {
    padding: 14px 36px;
    font-size: 1.05rem;
}

.btn-cta {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
}

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

/* --------------------------------------------
   Top Bar
   -------------------------------------------- */
.top-bar {
    background-color: var(--primary-dark);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar-info {
    color: rgba(255, 255, 255, 0.8);
}

.top-bar-info li {
    margin-right: 24px;
}

.top-bar-info i {
    color: var(--accent-color);
    margin-right: 6px;
}

.top-bar-phone {
    color: var(--white);
    font-weight: 500;
}

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

/* --------------------------------------------
   Navigation
   -------------------------------------------- */
.navbar {
    background-color: var(--primary-color);
    padding: 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    padding: 15px 0;
}

.brand-text {
    display: flex;
    align-items: baseline;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.brand-ltd {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    color: var(--accent-color);
    margin-left: 4px;
}

.brand-tagline {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 28px 18px;
    position: relative;
    transition: var(--transition-fast);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--accent-color);
    transition: var(--transition-normal);
}

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

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    padding: 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* --------------------------------------------
   Hero Section
   -------------------------------------------- */
.hero {
    position: relative;
    min-height: 85vh;
    background: linear-gradient(135deg, rgba(15, 37, 64, 0.9) 0%, rgba(26, 58, 92, 0.85) 50%, rgba(42, 90, 140, 0.8) 100%),
                url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.min-vh-75 {
    min-height: 75vh;
}

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

.hero-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 550px;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 2.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    color: var(--white);
    font-size: 1rem;
}

.hero-feature i {
    color: var(--accent-color);
    margin-right: 8px;
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* --------------------------------------------
   Features Section
   -------------------------------------------- */
.features-section {
    background-color: var(--primary-dark);
    padding: 50px 0;
    margin-top: -1px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    transition: var(--transition-normal);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

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

.feature-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* --------------------------------------------
   About Preview Section
   -------------------------------------------- */
.about-image-wrapper {
    position: relative;
}

.about-image-placeholder {
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.85), rgba(42, 90, 140, 0.8)),
                url('https://images.unsplash.com/photo-1567361808960-dec9cb578182?auto=format&fit=crop&w=800&q=80') center center / cover no-repeat;
    border-radius: var(--radius-lg);
    padding: 120px 40px;
    text-align: center;
    color: var(--white);
}

.about-image-placeholder i {
    font-size: 5rem;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.8;
}

.about-image-placeholder span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
}

.about-image-placeholder.large {
    padding: 150px 40px;
}

.about-image-placeholder.large small {
    display: block;
    margin-top: 10px;
    font-size: 1rem;
    opacity: 0.8;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 20px 25px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .years {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    padding-left: 30px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: var(--text-medium);
}

.about-list li i {
    color: var(--accent-color);
    margin-right: 12px;
    margin-top: 4px;
    font-size: 1.1rem;
}

/* --------------------------------------------
   Service Cards
   -------------------------------------------- */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
}

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

.service-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 1.6rem;
    color: var(--white);
}

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

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
}

.service-link i {
    margin-left: 8px;
    transition: var(--transition-fast);
}

.service-link:hover {
    color: var(--accent-dark);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* --------------------------------------------
   Why Choose Us Section
   -------------------------------------------- */
.why-us-items {
    margin-top: 2rem;
}

.why-us-item {
    display: flex;
    margin-bottom: 25px;
}

.why-us-icon {
    width: 55px;
    height: 55px;
    background: var(--lighter-gray);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 20px;
}

.why-us-icon i {
    font-size: 1.4rem;
    color: var(--accent-color);
}

.why-us-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.why-us-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

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

.stat-card {
    background: var(--primary-color);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    color: var(--white);
}

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

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* --------------------------------------------
   CTA Section
   -------------------------------------------- */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, rgba(15, 37, 64, 0.92) 0%, rgba(26, 58, 92, 0.88) 100%),
                url('https://images.unsplash.com/photo-1565793298595-6a879b1d9492?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
    padding: 80px 0;
    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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.cta-title {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
}

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

/* --------------------------------------------
   Products Preview Section
   -------------------------------------------- */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
    height: 100%;
}

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

.product-icon {
    width: 80px;
    height: 80px;
    background: var(--lighter-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-normal);
}

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

.product-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.product-card:hover .product-icon i {
    color: var(--white);
}

.product-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* --------------------------------------------
   Page Header
   -------------------------------------------- */
.page-header {
    position: relative;
    background: linear-gradient(135deg, rgba(15, 37, 64, 0.92) 0%, rgba(26, 58, 92, 0.88) 100%),
                url('https://images.unsplash.com/photo-1504917595217-d4dc5ebb6f01?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
    padding: 100px 0 60px;
    text-align: center;
}

/* Page-specific header backgrounds */
.page-header-about {
    background: linear-gradient(135deg, rgba(15, 37, 64, 0.9) 0%, rgba(26, 58, 92, 0.85) 100%),
                url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
}

.page-header-services {
    background: linear-gradient(135deg, rgba(15, 37, 64, 0.9) 0%, rgba(26, 58, 92, 0.85) 100%),
                url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
}

.page-header-products {
    background: linear-gradient(135deg, rgba(15, 37, 64, 0.9) 0%, rgba(26, 58, 92, 0.85) 100%),
                url('https://images.unsplash.com/photo-1587293852726-70cdb56c2866?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
}

.page-header-case-studies {
    background: linear-gradient(135deg, rgba(15, 37, 64, 0.9) 0%, rgba(26, 58, 92, 0.85) 100%),
                url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
}

.page-header-contact {
    background: linear-gradient(135deg, rgba(15, 37, 64, 0.9) 0%, rgba(26, 58, 92, 0.85) 100%),
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
}

.page-header::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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.page-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a:hover {
    color: var(--white);
}

.breadcrumb-item.active {
    color: var(--accent-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* --------------------------------------------
   Facility Section
   -------------------------------------------- */
.facility-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition-normal);
}

.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.facility-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.facility-icon i {
    font-size: 2rem;
    color: var(--white);
}

.facility-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.facility-card p {
    margin-bottom: 0;
}

/* --------------------------------------------
   Values Section
   -------------------------------------------- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    background: var(--lighter-gray);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.value-stat {
    text-align: center;
    padding: 25px;
}

.value-stat .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 8px;
}

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

.values-list {
    margin-top: 2rem;
}

.value-item {
    display: flex;
    margin-bottom: 25px;
}

.value-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 20px;
}

.value-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.value-content h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.value-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* --------------------------------------------
   Timeline Section
   -------------------------------------------- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--primary-color);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    padding-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 50%;
    padding-right: 0;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 40px;
    background: var(--accent-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
}

.timeline-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-md);
    max-width: 350px;
    margin-right: 60px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 0;
    margin-left: 60px;
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.timeline-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* --------------------------------------------
   Service Detail Cards
   -------------------------------------------- */
.service-detail-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
}

.service-detail-image .service-image-placeholder {
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.8), rgba(42, 90, 140, 0.75));
    border-radius: var(--radius-lg);
    padding: 100px 40px;
    text-align: center;
    color: var(--white);
    background-size: cover;
    background-position: center;
}

.service-image-placeholder i {
    font-size: 5rem;
    opacity: 0.9;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Individual Service Background Images */
.service-img-stockholding {
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.85), rgba(42, 90, 140, 0.8)),
                url('https://images.unsplash.com/photo-1587293852726-70cdb56c2866?auto=format&fit=crop&w=800&q=80') center center / cover no-repeat !important;
}

.service-img-fabrication {
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.8), rgba(42, 90, 140, 0.75)),
                url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?auto=format&fit=crop&w=800&q=80') center center / cover no-repeat !important;
}

.service-img-structural {
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.85), rgba(42, 90, 140, 0.8)),
                url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=800&q=80') center center / cover no-repeat !important;
}

.service-img-cutting {
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.8), rgba(42, 90, 140, 0.75)),
                url('https://images.unsplash.com/photo-1567361808960-dec9cb578182?auto=format&fit=crop&w=800&q=80') center center / cover no-repeat !important;
}

.service-img-finishing {
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.8), rgba(42, 90, 140, 0.75)),
                url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?auto=format&fit=crop&w=800&q=80') center center / cover no-repeat !important;
}

.service-img-delivery {
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.8), rgba(42, 90, 140, 0.75)),
                url('https://images.unsplash.com/photo-1565793298595-6a879b1d9492?auto=format&fit=crop&w=800&q=80') center center / cover no-repeat !important;
}

.service-detail-content .service-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--lighter-gray);
    line-height: 1;
    margin-bottom: 10px;
}

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

.service-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--text-medium);
}

.service-features li i {
    color: var(--accent-color);
    margin-right: 12px;
}

/* --------------------------------------------
   Process Section
   -------------------------------------------- */
.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.process-number {
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.process-step h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.process-step p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* --------------------------------------------
   Products Grid
   -------------------------------------------- */
.product-detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
}

.product-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.product-detail-icon {
    width: 70px;
    height: 70px;
    background: var(--lighter-gray);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-normal);
}

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

.product-detail-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.product-detail-card:hover .product-detail-icon i {
    color: var(--white);
}

.product-detail-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.product-specs {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    border-top: 1px solid var(--lighter-gray);
    padding-top: 20px;
}

.product-specs li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.product-specs li span:first-child {
    font-weight: 500;
    color: var(--text-dark);
}

/* --------------------------------------------
   Finishes Section
   -------------------------------------------- */
.finish-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition-normal);
}

.finish-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.finish-icon {
    width: 60px;
    height: 60px;
    background: var(--medium-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.finish-icon.paint {
    background: var(--primary-color);
}

.finish-icon.powder {
    background: var(--accent-color);
}

.finish-icon.galv {
    background: #95a5a6;
}

.finish-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.finish-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.finish-card p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* --------------------------------------------
   Why Buy Section
   -------------------------------------------- */
.why-buy-list {
    margin-top: 25px;
}

.why-buy-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-medium);
}

.why-buy-item i {
    color: var(--accent-color);
    margin-right: 12px;
    font-size: 1.2rem;
}

.superstore-card {
    background: var(--primary-color);
    border-radius: var(--radius-xl);
    padding: 45px;
    text-align: center;
    color: var(--white);
}

.superstore-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.superstore-icon i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.superstore-card h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.superstore-card p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

.superstore-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.superstore-features span {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.superstore-features i {
    margin-right: 6px;
    color: var(--accent-color);
}

/* --------------------------------------------
   Contact Section
   -------------------------------------------- */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 45px;
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h2 {
    margin-bottom: 10px;
}

.contact-form-wrapper .lead {
    margin-bottom: 30px;
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-label .required {
    color: #e74c3c;
}

.form-control,
.form-select {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.1);
}

.form-note {
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    background: var(--primary-color);
    border-radius: var(--radius-xl);
    padding: 35px;
    color: var(--white);
}

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

.contact-info-card > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.contact-info-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 20px;
}

.contact-info-icon i {
    font-size: 1.3rem;
    color: var(--accent-color);
}

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

.contact-info-content p,
.contact-info-content a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-info-content a:hover {
    color: var(--white);
}

.superstore-info-card {
    background: var(--lighter-gray);
    border-radius: var(--radius-xl);
    padding: 35px;
    text-align: center;
}

.superstore-badge {
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.superstore-badge i {
    font-size: 1.8rem;
    color: var(--white);
}

.superstore-info-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.superstore-info-card > p {
    margin-bottom: 20px;
}

.superstore-info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.superstore-info-card li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-medium);
}

.superstore-info-card li i {
    color: var(--accent-color);
    margin-right: 10px;
}

/* --------------------------------------------
   Map Section
   -------------------------------------------- */
.map-section {
    height: 400px;
}

.map-placeholder {
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
    color: var(--white);
}

.map-content i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.map-content h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.map-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.map-note {
    font-size: 0.9rem !important;
    margin-top: 15px !important;
}

/* --------------------------------------------
   FAQ Section
   -------------------------------------------- */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: var(--radius-lg) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    padding: 20px 25px;
    background-color: var(--white);
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-size: 1rem;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 25px;
    color: var(--text-medium);
}

/* --------------------------------------------
   Footer
   -------------------------------------------- */
.footer {
    background-color: var(--primary-dark);
}

.footer-main {
    padding: 70px 0 50px;
}

.footer-brand {
    display: flex;
    align-items: baseline;
}

.footer-brand .brand-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
}

.footer-brand .brand-ltd {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    color: var(--accent-color);
    margin-left: 4px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-features span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-features i {
    color: var(--accent-color);
    margin-right: 8px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

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

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact li i {
    color: var(--accent-color);
    margin-right: 12px;
    margin-top: 4px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

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

.btn-cta-footer {
    background: var(--accent-color);
    color: var(--white);
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
}

.btn-cta-footer i {
    margin-right: 8px;
}

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

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* --------------------------------------------
   Back to Top Button
   -------------------------------------------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-dark);
    transform: translateY(-5px);
}

.back-to-top i {
    font-size: 1.3rem;
}

/* --------------------------------------------
   Responsive Styles
   -------------------------------------------- */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

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

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

    .section-padding {
        padding: 60px 0;
    }

    .about-content {
        padding-left: 0;
    }

    .navbar-nav .nav-link {
        padding: 12px 0;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-collapse {
        background: var(--primary-color);
        padding: 20px;
        margin-top: 10px;
        border-radius: var(--radius-md);
    }

    .service-detail-card {
        padding: 35px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-right: 0;
        padding-left: 70px;
    }

    .timeline-item:nth-child(even) {
        padding-left: 70px;
    }

    .timeline-marker {
        left: 20px;
        width: 60px;
        height: 35px;
        font-size: 0.8rem;
    }

    .timeline-content {
        margin-right: 0;
        max-width: 100%;
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.4rem; }

    .hero {
        min-height: 70vh;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
    }

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

    .hero-buttons .btn {
        width: 100%;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .experience-badge {
        right: 10px;
        bottom: -10px;
        padding: 15px 20px;
    }

    .experience-badge .years {
        font-size: 2rem;
    }

    .stats-grid {
        gap: 15px;
    }

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

    .service-detail-card {
        padding: 25px;
    }

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

    .contact-info-card {
        padding: 25px;
    }

    .values-grid {
        padding: 25px;
    }

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

@media (max-width: 575px) {
    .brand-name {
        font-size: 1.3rem;
    }

    .brand-tagline {
        font-size: 0.65rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-padding {
        padding: 50px 0;
    }

    .process-step::after {
        display: none;
    }

    .footer-main {
        padding: 50px 0 30px;
    }
}

/* --------------------------------------------
   Contact Page Cards
   -------------------------------------------- */
.contact-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.contact-card-icon i {
    font-size: 2rem;
    color: var(--white);
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.contact-card p {
    margin-bottom: 15px;
}

.contact-link {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
}

.contact-link:hover {
    color: var(--accent-dark);
}

.contact-address {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* --------------------------------------------
   Visit Section
   -------------------------------------------- */
.opening-hours {
    background: var(--lighter-gray);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin: 25px 0;
}

.opening-hours h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.opening-hours h4 i {
    color: var(--accent-color);
    margin-right: 8px;
}

.opening-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.opening-hours li:last-child {
    border-bottom: none;
}

.visit-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.visit-feature {
    display: flex;
    align-items: center;
    color: var(--text-medium);
}

.visit-feature i {
    color: var(--accent-color);
    margin-right: 8px;
}

/* --------------------------------------------
   Address Card
   -------------------------------------------- */
.address-card {
    background: var(--primary-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.address-card-header {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px;
    text-align: center;
}

.address-card-header i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.address-card-header h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0;
}

.address-card-body {
    padding: 30px;
}

.address-detail {
    display: flex;
    margin-bottom: 25px;
}

.address-detail:last-child {
    margin-bottom: 0;
}

.address-detail i {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-right: 15px;
    margin-top: 3px;
}

.address-detail strong {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.address-detail p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.address-detail a {
    color: rgba(255, 255, 255, 0.8);
}

.address-detail a:hover {
    color: var(--white);
}

/* --------------------------------------------
   Help Cards
   -------------------------------------------- */
.help-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition-normal);
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.help-icon {
    width: 70px;
    height: 70px;
    background: var(--lighter-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-normal);
}

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

.help-icon i {
    font-size: 1.6rem;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.help-card:hover .help-icon i {
    color: var(--white);
}

.help-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.help-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* --------------------------------------------
   Fabrication Cards
   -------------------------------------------- */
.fabrication-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition-normal);
}

.fabrication-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.fabrication-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.fabrication-icon i {
    font-size: 2rem;
    color: var(--white);
}

.fabrication-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.fabrication-card p {
    margin-bottom: 25px;
}

/* --------------------------------------------
   Processing Cards
   -------------------------------------------- */
.processing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
}

.processing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.processing-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.processing-icon i {
    font-size: 1.6rem;
    color: var(--white);
}

.processing-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.processing-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.processing-spec {
    background: var(--lighter-gray);
    border-radius: var(--radius-md);
    padding: 12px 15px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.processing-spec strong {
    color: var(--primary-color);
}

/* --------------------------------------------
   Case Studies Page
   -------------------------------------------- */
.case-studies-intro {
    background: var(--white);
}

.case-study-section {
    padding: 60px 0;
}

.case-study-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.case-study-images {
    position: relative;
}

.case-study-main-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.case-study-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

.case-study-gallery img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.case-study-gallery img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.case-study-content {
    padding-left: 20px;
}

.case-study-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.case-study-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.case-study-content .lead {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.case-study-content p {
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.7;
}

.case-study-details {
    background: var(--lighter-gray);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin: 25px 0;
}

.case-study-details h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
}

.case-study-specs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-study-specs li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.case-study-specs li:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: var(--text-dark);
}

.spec-value {
    color: var(--text-muted);
}

.case-study-features {
    margin-top: 25px;
}

.case-study-features h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.case-study-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-study-features li {
    padding: 8px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.case-study-features li i {
    color: var(--accent-color);
    font-size: 1rem;
}

/* Coming Soon Section */
.coming-soon-section {
    background: var(--white);
}

.coming-soon-content {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    color: var(--white);
}

.coming-soon-content i {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 25px;
    display: block;
}

.coming-soon-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--white);
}

.coming-soon-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
}

/* Case Studies Responsive */
@media (max-width: 991px) {
    .case-study-card {
        padding: 30px;
    }

    .case-study-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .case-study-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 575px) {
    .case-study-card {
        padding: 20px;
    }

    .case-study-main-image img {
        height: 250px;
    }

    .case-study-gallery img {
        height: 120px;
    }

    .case-study-specs li {
        flex-direction: column;
        gap: 5px;
    }

    .coming-soon-content {
        padding: 40px 25px;
    }

    .coming-soon-content i {
        font-size: 2.5rem;
    }

    .coming-soon-content h3 {
        font-size: 1.4rem;
    }
}

/* --------------------------------------------
   Animation Utilities
   -------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* --------------------------------------------
   Print Styles
   -------------------------------------------- */
@media print {
    .navbar,
    .top-bar,
    .footer,
    .back-to-top,
    .cta-section {
        display: none;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    a {
        color: #000;
        text-decoration: underline;
    }
}
