:root {
    --brand-orange: #FF6B00;
    --text-dark: #111827;
    --bg-light: #F8F9FA;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.heading-font {
    font-family: 'Cabinet Grotesk', sans-serif;
}

/* Gradients */
.text-gradient {
    background: linear-gradient(135deg, var(--brand-orange) 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-orange) 0%, #e65c00 100%);
}

/* Service Panels */
.service-panel {
    padding: 3rem;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

.service-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--brand-orange);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-panel:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
    border-color: #D1D5DB;
}

.service-panel:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

/* Cinematic Image Reveal */
.image-reveal {
    clip-path: inset(0 100% 0 0);
    animation: revealImage 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    animation-delay: 0.5s;
}

@keyframes revealImage {
    0% { clip-path: inset(0 100% 0 0); }
    100% { clip-path: inset(0 0 0 0); }
}

/* Cinematic Cards */
.cinematic-card {
    position: relative;
    overflow: hidden;
}

.cinematic-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    transition: border-color 0.4s ease;
}

.cinematic-card:hover::after {
    border-color: rgba(255, 107, 0, 0.3);
}

/* Entrance Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

::selection {
    background: var(--brand-orange);
    color: white;
}