/* CSS Variables - Black and Gold Theme */
:root {
    --background: 0 0% 0%;
    --foreground: 45 100% 90%;
    --card: 0 0% 5%;
    --card-foreground: 45 100% 90%;
    --primary: 45 100% 50%;
    --primary-foreground: 0 0% 0%;
    --secondary: 0 0% 10%;
    --secondary-foreground: 45 100% 60%;
    --muted: 0 0% 8%;
    --muted-foreground: 45 30% 60%;
    --accent: 45 100% 55%;
    --accent-foreground: 0 0% 0%;
    --border: 0 0% 15%;
    --input: 0 0% 15%;
    --ring: 45 100% 50%;
    --radius: 1rem;
    --glass-bg: 0 0% 5% / 0.7;
    --glass-border: 45 100% 50% / 0.2;
    --gradient-primary: linear-gradient(135deg, hsl(45 100% 50%), hsl(45 100% 60%));
    --gradient-hero: linear-gradient(135deg, hsl(0 0% 0%), hsl(0 0% 10%));
    --shadow-glass: 0 8px 32px 0 hsl(45 100% 50% / 0.1);
    --shadow-elevated: 0 20px 60px -15px hsl(45 100% 50% / 0.2);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-color: hsl(var(--border));
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.6;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: hsl(var(--glass-bg));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-glass);
    border-bottom: 1px solid hsl(var(--glass-border));
    padding: 0.75rem 0;
}

.header:not(.scrolled) {
    background: hsl(var(--background) / 0.95);
    padding: 1.25rem 0;
}

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

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: hsl(var(--foreground));
    transition: var(--transition-smooth);
    font-size: 1rem;
}

.nav-link:hover,
.nav-link.active {
    color: hsl(var(--primary));
    font-weight: 600;
}

.mobile-menu-btn {
    display: block;
    color: hsl(var(--primary));
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

/* Hamburger Menu Animation */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: hsl(var(--primary));
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    margin-top: 1rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    background: hsl(var(--glass-bg));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-glass);
    border: 1px solid hsl(var(--glass-border));
    border-radius: var(--radius);
    padding: 1.5rem;
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
}

.mobile-menu.show {
    display: block;
    animation: menuIn 0.3s ease-out forwards;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    text-align: left;
    color: hsl(var(--foreground));
    transition: var(--transition-smooth);
    padding: 0.5rem 0;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: hsl(var(--primary));
    font-weight: 600;
}

/* Buttons */
.btn {
    padding: 0.5rem 1.5rem;
    border-radius: calc(var(--radius) / 2);
    font-weight: 500;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-elevated);
}

.btn-outline {
    background: hsl(var(--card));
    color: hsl(var(--foreground));
    border: 1px solid hsl(var(--border));
}

.btn-outline:hover {
    background: hsl(var(--secondary));
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn-gradient {
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-elevated);
}

/* Glass Card */
.glass-card {
    background: hsl(var(--glass-bg));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-glass);
    border: 1px solid hsl(var(--glass-border));
    border-radius: var(--radius);
    padding: 2rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
}

.hero-slides {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: heroFade 18s infinite;
    animation-delay: var(--delay, 0s);
    animation-timing-function: ease-in-out;
}

.hero-slide:nth-child(1) {
    --delay: 0s;
}

.hero-slide:nth-child(2) {
    --delay: 6s;
}

.hero-slide:nth-child(3) {
    --delay: 12s;
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.05);
    animation: heroZoom 18s infinite;
    animation-delay: var(--delay, 0s);
    filter: brightness(0.4);
    animation-timing-function: ease-in-out;
}

.hero-overlay {
    position: absolute;
    inset: 0;
}

@keyframes heroFade {
    0%,
    5% {
        opacity: 0;
    }
    8%,
    33% {
        opacity: 1;
    }
    38%,
    100% {
        opacity: 0;
    }
}

@keyframes heroZoom {
    0%,
    100% {
        transform: scale(1.05);
    }
    33% {
        transform: scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-text {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: hsl(45 100% 50%);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: hsl(var(--foreground) / 0.9);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

/* New hero layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    justify-items: center;
    width: 100%;
}

/* ===== HERO BOX BACKGROUND IMAGE: UPDATE URL BELOW IF YOU CHANGE THE PHOTO ===== */
.hero-box {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
    align-items: center;
    width: 100%;
    max-width: 72rem;
    padding: 3rem 3.5rem;
    /* Background image is behind this box via .hero-bg */
    background: hsl(var(--glass-bg));
    border: 1px solid hsl(var(--glass-border));
    box-shadow: var(--shadow-glass);
}

.hero-section .container {
    max-width: 1400px;
}

.hero-logo-box {
    display: none;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}

.logo-square {
    width: 220px;
    height: 220px;
    border-radius: calc(var(--radius) / 3);
    border: 2px solid hsl(var(--primary));
    box-shadow: var(--shadow-elevated);
    object-fit: cover;
}

.hero-section-small {
    padding: 8rem 0 2rem;
    background: linear-gradient(to bottom right, hsl(var(--primary) / 0.05), hsl(var(--accent) / 0.05));
}

.page-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: hsl(var(--primary));
    margin-bottom: 1.5rem;
}

.page-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: hsl(var(--primary-foreground));
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

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

.divider {
    width: 6rem;
    height: 0.25rem;
    background: var(--gradient-primary);
    margin: 0 auto 1rem;
}

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

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75;
}

.text-xl {
    font-size: 1.25rem;
}

.text-primary {
    color: hsl(var(--primary));
}

.text-accent {
    color: hsl(var(--accent));
}

.text-muted {
    color: hsl(var(--muted-foreground));
}

.text-foreground {
    color: hsl(var(--foreground));
}

.font-semibold {
    font-weight: 600;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-5xl {
    max-width: 64rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

/* Backgrounds */
.bg-secondary {
    background-color: hsl(var(--secondary) / 0.3);
}

.bg-gradient-light {
    background: linear-gradient(to bottom right, hsl(var(--primary) / 0.05), hsl(var(--accent) / 0.05));
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

.service-card {
    background: hsl(var(--glass-bg));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-glass);
    border: 1px solid hsl(var(--glass-border));
    border-radius: var(--radius);
    padding: 2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: calc(var(--radius) / 2);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: hsl(var(--primary-foreground));
}

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

.service-description {
    color: hsl(var(--foreground));
    line-height: 1.75;
    margin-bottom: 1rem;
}

/* Services Grid Large */
.services-grid-large {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

.service-card-large {
    background: hsl(var(--glass-bg));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-glass);
    border: 1px solid hsl(var(--glass-border));
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-list li {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    color: hsl(var(--foreground));
}

.service-list svg {
    color: hsl(var(--accent));
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

.value-card {
    background: hsl(var(--glass-bg));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-glass);
    border: 1px solid hsl(var(--glass-border));
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition-smooth);
}

.value-card:hover {
    box-shadow: var(--shadow-elevated);
}

.value-icon {
    width: 4rem;
    height: 4rem;
    border-radius: calc(var(--radius) / 2);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: hsl(var(--primary-foreground));
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--primary));
}

/* Mission Grid */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

/* Why Grid */
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
}

.why-card {
    background: hsl(var(--glass-bg));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-glass);
    border: 1px solid hsl(var(--glass-border));
    border-radius: calc(var(--radius) / 2);
    padding: 1.5rem;
}

.why-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--primary));
    margin-bottom: 0.75rem;
}

/* Offer Grid */
.offer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

.offer-card {
    background: hsl(var(--glass-bg));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-glass);
    border: 1px solid hsl(var(--glass-border));
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition-smooth);
}

.offer-card:hover {
    box-shadow: var(--shadow-elevated);
}

.offer-card svg {
    color: hsl(var(--primary));
    margin-bottom: 0.5rem;
}

.offer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--primary));
}

/* Process List */
.process-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
}

.process-item {
    background: hsl(var(--glass-bg));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-glass);
    border: 1px solid hsl(var(--glass-border));
    border-radius: calc(var(--radius) / 2);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
}

.process-number {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--primary-foreground));
    font-weight: 700;
    font-size: 1.25rem;
}

.process-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--primary));
    margin-bottom: 0.5rem;
}

/* Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
}

.industry-card {
    background: hsl(var(--glass-bg));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-glass);
    border: 1px solid hsl(var(--glass-border));
    border-radius: calc(var(--radius) / 2);
    padding: 1.5rem;
    text-align: center;
}

.industry-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--primary));
    margin-bottom: 0.5rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 80rem;
    margin: 0 auto;
}

.contact-form-container {
    flex: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.form-group label {
    font-weight: 500;
    color: hsl(var(--foreground));
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem;
    border-radius: calc(var(--radius) / 2);
    border: 1px solid hsl(var(--input));
    background: hsl(var(--card));
    color: hsl(var(--foreground));
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: hsl(var(--ring));
    box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--primary));
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--primary-foreground));
}

.info-label {
    font-weight: 600;
    color: hsl(var(--primary));
    margin-bottom: 0.25rem;
}

.info-link {
    color: hsl(var(--foreground));
    transition: var(--transition-smooth);
}

.info-link:hover {
    color: hsl(var(--accent));
}

.info-text {
    color: hsl(var(--foreground));
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    color: hsl(var(--foreground));
}

.hours-day {
    color: hsl(var(--muted-foreground));
}

.hours-time {
    font-weight: 500;
}

.contact-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: hsl(var(--primary-foreground));
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

/* Footer */
.footer {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    padding: 2rem 0;
    text-align: center;
}

.footer-text {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* 404 Page */
.not-found {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.not-found-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.not-found-text {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
}

.not-found-link {
    color: hsl(var(--primary));
    text-decoration: underline;
    transition: var(--transition-smooth);
}

.not-found-link:hover {
    color: hsl(var(--accent));
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: hsl(var(--card));
    color: hsl(var(--foreground));
    padding: 1rem 1.5rem;
    border-radius: calc(var(--radius) / 2);
    box-shadow: var(--shadow-elevated);
    border: 1px solid hsl(var(--border));
    display: none;
    z-index: 100;
    max-width: 400px;
}

.toast.show {
    display: block;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile menu open animation */
@keyframes menuIn {
    0% {
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Fade Up Animation */
.fade-up {
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

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

/* Responsive Design */
@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .button-group {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    
    .hero-title {
        font-size: 3.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-grid {
        grid-template-columns: 2fr 1fr;
    }

    .hero-logo-box {
        display: flex;
    }
    
    .page-title {
        font-size: 3.75rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 3fr 2fr;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid-large {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .offer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Images */
.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: calc(var(--radius) / 2);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-glass);
    transition: var(--transition-smooth);
}

.card-image:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: calc(var(--radius) / 2);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-glass);
    transition: var(--transition-smooth);
}

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

.value-card .card-image,
.offer-card .card-image,
.why-card .card-image,
.industry-card .card-image {
    height: 200px;
}

/* Utility Classes */
.mb-4 {
    margin-bottom: 1rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

