/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --primary-orange: #F05A28; /* Inspired by the logo */
    --primary-orange-hover: #D04C20;
    --white: #ffffff;
    --light-bg: #FAFAFA;
    --dark-text: #1A1A1A;
    --dark-bg: #111111;
    --gray-text: #666666;
    --border-color: #EAEAEA;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    
    /* Transitions & Shadows */
    --transition-fast: 0.2s ease-in-out;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 10px 40px rgba(240, 90, 40, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--white);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

p {
    font-size: 1rem;
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

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

.bg-dark {
    background-color: var(--dark-bg);
}

.text-glow {
    text-shadow: 0 0 20px rgba(240, 90, 40, 0.4);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(240, 90, 40, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(240, 90, 40, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
    z-index: -1;
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-outline {
    background-color: transparent;
    color: var(--dark-text);
    border: 1px solid var(--border-color);
}

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

.btn-outline-white {
    background-color: transparent;
    color: var(--dark-text);
    border: 1px solid var(--dark-text);
    backdrop-filter: blur(5px);
}
.btn-outline-white:hover {
    background-color: var(--dark-text);
    color: var(--white);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all var(--transition-smooth);
    background: transparent;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text span {
    font-weight: 400;
    color: var(--gray-text);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background-color: var(--primary-orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    background: rgba(255,255,255,0.7);
    padding: 0.5rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.navbar.scrolled .nav-links {
    background: transparent;
    box-shadow: none;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-orange);
    transition: width var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-orange);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-text);
}

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

.section-light {
    background-color: var(--light-bg);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.tagline {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(240, 90, 40, 0.1);
    color: var(--primary-orange);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* 3D Asymmetrical Grid */
.asym-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.asym-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Premium Hero Section */
.hero-premium {
    min-height: 100vh;
    padding-top: 8rem;
    padding-bottom: 4rem;
    position: relative;
    background-color: var(--white);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-text);
    max-width: 600px;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.scroll-indicator-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, var(--dark-text) 0%, transparent 100%);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { height: 0; opacity: 0; }
    50% { height: 100px; opacity: 1; }
    100% { height: 100px; opacity: 0; transform: translateX(-50%) translateY(50px); }
}

/* Marquee */
.marquee-section {
    padding: 2rem 0;
    background: var(--dark-text);
    color: var(--white);
    overflow: hidden;
    border-top: 4px solid var(--primary-orange);
    border-bottom: 4px solid var(--primary-orange);
}

.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: 0.05em;
    padding-left: 100%;
}

.marquee-content span {
    display: inline-block;
    vertical-align: middle;
}
.marquee-content .dot {
    color: var(--primary-orange);
    margin: 0 2rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Cards & Tilt Effects */
.tilt-card {
    transform-style: preserve-3d;
}

.service-card {
    background: rgba(255,255,255,0.9);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    transition: border-color var(--transition-fast);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    /* For 3D children */
    transform: perspective(1000px);
}

.highlight-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
    border: 2px solid var(--primary-orange);
}

/* Make inner elements pop out in 3D when tilting */
.tilt-card h2, .tilt-card h3, .tilt-card p, .tilt-card .service-icon, .tilt-card .author-img {
    transform: translateZ(30px);
}
.tilt-card .service-link {
    transform: translateZ(50px);
}

.service-home-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    transform: translateZ(40px);
}

.highlight-card .service-home-img {
    height: 300px;
}

.service-icon {
    width: 64px;
    height: 64px;
    background-color: var(--light-bg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-orange);
    margin-bottom: 2rem;
    transition: all var(--transition-fast);
}

.highlight-card .service-icon {
    background-color: var(--primary-orange);
    color: var(--white);
    width: 80px; height: 80px;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-link {
    font-weight: 600;
    color: var(--dark-text);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link svg {
    transition: transform var(--transition-fast);
}

.service-card:hover .service-link {
    color: var(--primary-orange);
}
.service-card:hover .service-link svg {
    transform: translateX(5px);
}

/* Stats / Parallax Section */
.bg-orange-gradient {
    background: linear-gradient(135deg, #FF6A00 0%, #EE0979 100%);
    position: relative;
    overflow: hidden;
}

.stat-box {
    text-align: center;
    padding: 3rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.stat-box h2 {
    font-size: 4rem;
    margin-bottom: 0;
    display: inline-block;
}
.stat-box span {
    font-size: 2.5rem;
    font-weight: 700;
}
.stat-box p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-weight: 500;
    font-size: 1.2rem;
}

/* Parallax Orbs */
.parallax-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    opacity: 0.6;
}
.orb-1 {
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.3);
    top: -100px; left: -100px;
}
.orb-2 {
    width: 300px; height: 300px;
    background: rgba(0,0,0,0.2);
    bottom: -50px; right: 10%;
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 2rem; right: 2rem;
    opacity: 0.1;
}

.testimonial-text {
    font-size: 1.25rem;
    color: var(--dark-text);
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-img {
    width: 60px; height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--light-bg);
}

.testimonial-author h4 {
    margin-bottom: 0.25rem;
}
.testimonial-author p {
    margin-bottom: 0;
    font-size: 0.9rem;
}


/* Portfolio Items */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.hero-premium-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-sculpture {
    width: 90%;
    height: 90%;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

.hero-sculpture-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    transform: translateZ(40px); /* Makes it pop off the tilt card */
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Cinematic Reveal Animations */
.reveal-mask {
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
}

.sweep-up {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    animation: sweepUpAnim 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.animation-delay-1 { animation-delay: 0.1s; }
.animation-delay-2 { animation-delay: 0.2s; }
.animation-delay-3 { animation-delay: 0.3s; }
.animation-delay-4 { animation-delay: 0.4s; }
.animation-delay-5 { animation-delay: 0.5s; }
.animation-delay-6 { animation-delay: 0.6s; }

/* Ambient Glow */
.ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(240,90,40,0.15) 0%, rgba(240,90,40,0) 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

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

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-title {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transform: translateZ(30px) translateY(20px);
    transition: transform var(--transition-smooth);
}

.portfolio-category {
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transform: translateZ(20px) translateY(20px);
    transition: transform var(--transition-smooth) 0.1s;
}

.portfolio-item:hover .portfolio-title {
    transform: translateZ(30px) translateY(0);
}
.portfolio-item:hover .portfolio-category {
    transform: translateZ(20px) translateY(0);
}

/* Contact Form */
.contact-wrapper {
    background: var(--white);
    border-radius: 24px;
    padding: 4rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-text);
}

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background-color: var(--light-bg);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-orange);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(240, 90, 40, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    background-color: var(--dark-text);
    color: var(--white);
    padding: 6rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-logo .logo-text span {
    color: rgba(255,255,255,0.6);
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    max-width: 350px;
}

.footer-heading {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 1rem;
}

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

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Responsive Design */
@media (max-width: 992px) {
    .grid-2, .grid-3, .asym-grid, .hero-premium-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-premium-content {
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-premium-visual {
        margin-top: 4rem;
        aspect-ratio: 1/1;
    }
    
    .float-1 { bottom: -5%; left: 0; }
    .float-2 { top: 0; right: 0; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        transition: right var(--transition-smooth);
        z-index: -1;
        border-radius: 0;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .contact-wrapper {
        padding: 2rem;
    }
}

/* NEW HOME PAGE SECTIONS STYLES */

/* Philosophy Section */
.large-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--dark-bg);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.process-step {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.step-number {
    font-size: 6rem;
    font-weight: 800;
    color: rgba(240, 90, 40, 0.05);
    position: absolute;
    top: -10px;
    right: -10px;
    line-height: 1;
    z-index: 0;
    transition: color var(--transition-medium), transform var(--transition-medium);
}

.process-step:hover .step-number {
    color: rgba(240, 90, 40, 0.15);
    transform: scale(1.1) translate(-10px, 10px);
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.process-step p {
    position: relative;
    z-index: 1;
}

.process-step h3::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background-color: var(--primary-orange);
    margin-bottom: 1rem;
    border-radius: 2px;
}

/* Final CTA Section */
.cta-section {
    padding: 12rem 0;
    position: relative;
    overflow: hidden;
}

.text-glow {
    text-shadow: 0 0 30px rgba(240, 90, 40, 0.6);
}

.cta-glow {
    position: absolute;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240,90,40,0.2) 0%, rgba(240,90,40,0) 70%);
    filter: blur(80px);
    z-index: 1;
}

.glow-left {
    top: -20%;
    left: -20%;
}

.glow-right {
    bottom: -20%;
    right: -20%;
}

/* Ultra Premium Footer */
.premium-footer {
    position: relative;
    background: #050505;
    color: var(--white);
    padding: 8rem 0 0 0;
    overflow: hidden;
}

.footer-bg-anim {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(240,90,40,0.15) 0%, rgba(5,5,5,1) 50%);
    animation: rotateGlow 20s linear infinite;
    z-index: 0;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.footer-main-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

@media (max-width: 900px) {
    .footer-main-row {
        grid-template-columns: 1fr;
    }
}

.footer-cta-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.footer-cta-box h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 0.5rem;
}

.footer-cta-box p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.footer-huge-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    color: var(--dark-bg);
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.footer-huge-btn:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateX(10px);
}

.footer-glass-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 3rem 0;
}

.link-column h3 {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.link-column a {
    display: block;
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    position: relative;
    width: fit-content;
}

.hover-glitch {
    position: relative;
}

.hover-glitch::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--primary-orange);
    opacity: 0;
    transform: translate(-2px, 2px);
    transition: all 0.2s ease;
    z-index: -1;
}

.hover-glitch:hover::before {
    opacity: 1;
    transform: translate(2px, -2px);
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a:hover {
    color: var(--white);
}

.footer-massive-brand {
    width: 100%;
    text-align: center;
    line-height: 0.75;
    margin-top: 4rem;
    overflow: hidden;
}

.footer-massive-brand h1 {
    font-size: 20vw;
    font-weight: 900;
    margin: 0;
    background: linear-gradient(to top, rgba(240,90,40,0.8) 0%, rgba(255,255,255,1) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.05em;
    user-select: none;
}
