body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    scroll-behavior: smooth; /* Smooth scrolling for anchor links */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Mobile-first responsive breakpoints */
:root {
    --mobile-padding: 1rem;
    --tablet-padding: 1.5rem;
    --desktop-padding: 2rem;
    --touch-target-size: 44px;
    --mobile-font-size: 0.875rem;
    --tablet-font-size: 1rem;
    --desktop-font-size: 1.125rem;
}

/* Improved touch targets for mobile */
button, a, input, textarea, select {
    min-height: var(--touch-target-size);
    min-width: var(--touch-target-size);
}

/* Mobile-first container */
.container {
    width: 100%;
    margin: 0 auto;
    padding-left: var(--mobile-padding);
    padding-right: var(--mobile-padding);
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
        padding-left: var(--tablet-padding);
        padding-right: var(--tablet-padding);
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
        padding-left: var(--desktop-padding);
        padding-right: var(--desktop-padding);
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

/* Improved mobile typography */
@media (max-width: 640px) {
    body {
        font-size: var(--mobile-font-size);
        line-height: 1.6;
    }
    
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
}

/* Mobile-optimized spacing */
@media (max-width: 640px) {
    .mobile-spacing {
        padding: 1rem;
        margin: 0.5rem 0;
    }
    
    .mobile-gap {
        gap: 0.75rem;
    }
}

/* Improved mobile navigation */
@media (max-width: 768px) {
    nav {
        padding: 0.75rem var(--mobile-padding);
    }
    
    .navbar-logo-main {
        font-size: 1.125rem;
    }
    
    .navbar-logo-sub {
        font-size: 0.625rem;
    }
}

/* Mobile-optimized buttons */
@media (max-width: 640px) {
    .cta-button, .mobile-cta {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        border-radius: 0.75rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Mobile-optimized forms */
@media (max-width: 640px) {
    input, textarea, select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.75rem;
        border-radius: 0.5rem;
    }
}

/* Mobile-optimized cards */
@media (max-width: 640px) {
    .service-card, .contact-card {
        padding: 1rem;
        margin-bottom: 1rem;
        border-radius: 0.75rem;
    }
}

/* Mobile-optimized gallery */
@media (max-width: 640px) {
    .gallery-item {
        margin-bottom: 1rem;
    }
    
    .gallery-item img {
        border-radius: 0.75rem;
    }
}

/* Mobile-optimized footer */
@media (max-width: 640px) {
    footer {
        padding: 1.5rem var(--mobile-padding);
        text-align: center;
    }
    
    footer .container {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Mobile performance optimizations */
@media (max-width: 640px) {
    .animate-on-scroll {
        transition-duration: 0.6s; /* Faster animations on mobile */
    }
    
    .service-card:hover {
        transform: none; /* Disable hover effects on mobile */
    }
}

/* Mobile-safe area support */
@supports (padding: max(0px)) {
    .mobile-safe {
        padding-left: max(var(--mobile-padding), env(safe-area-inset-left));
        padding-right: max(var(--mobile-padding), env(safe-area-inset-right));
    }
}

/* Mobile-optimized images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Mobile-optimized grid layouts */
@media (max-width: 640px) {
    .mobile-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (min-width: 641px) and (max-width: 1023px) {
    .tablet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Responsive Navbar Logo Styling */
.navbar-logo-main {
    font-size: 1.25rem;
    font-weight: 700;
}
.navbar-logo-sub {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}
@media (min-width: 768px) { /* md breakpoint */
    .navbar-logo-main {
        font-size: 1.5rem;
    }
    .navbar-logo-sub {
        font-size: 0.875rem;
    }
}

/* Hero Section Text and Logo Styling */
.hero-logo-container {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.hero-logo-text {
    font-size: clamp(2.2rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.03em;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 10;
}

.com-wrapper {
    position: relative;
    display: inline-block;
    vertical-align: bottom; /* Aligns the wrapper with the baseline */
}

.hero-logo-com {
    font-size: clamp(1.2rem, 3vw, 2.2rem);
    font-weight: 900;
    position: relative;
    left: 0.2em;
    bottom: 0.1em;
    z-index: 15;
    line-height: 1;
}

.hero-logo-block-graphic {
    position: absolute;
    top: 50%;
    left: calc(50% + clamp(2rem, 7vw, 6rem)); /* Dynamically position based on text size */
    transform: translate(-50%, -50%);
    width: clamp(100px, 25vw, 280px); /* Responsive width */
    height: clamp(100px, 25vw, 280px); /* Responsive height */
    background-color: #d35400; /* A slightly deeper orange */
    border-radius: 0.5rem;
    opacity: 0.9;
    z-index: 5; /* Behind text */
    overflow: hidden; /* For vertical bars */
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 0.5rem;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-logo-bar {
    width: 12%;
    background-color: rgba(0, 0, 0, 0.25); /* Darker bars for contrast */
    border-radius: 0.25rem;
}
/* Varied heights for the bars */
.hero-logo-bar:nth-child(1) { height: 65%; }
.hero-logo-bar:nth-child(2) { height: 85%; }
.hero-logo-bar:nth-child(3) { height: 100%; }
.hero-logo-bar:nth-child(4) { height: 75%; }
.hero-logo-bar:nth-child(5) { height: 55%; }

.hero-sub-title {
    font-size: clamp(0.8rem, 1.5vw, 1.1rem);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    margin-top: 1.2rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 10;
}

/* Positioning for main titles */
.hero-main-heading {
    position: absolute;
    top: 22%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    color: white;
    text-align: center;
    z-index: 20;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
}
/* Initial state for elements to be animated */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Final state after animation is triggered */
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger the animation for a smoother effect for columns */
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }
.animate-delay-6 { transition-delay: 0.6s; }


/* Gallery Image loading and modal styles */
.gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.loading-spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #f39c12;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

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

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
    align-items: center;
    justify-content: center;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    border-radius: 0.75rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform: scale(0.1)}
    to {transform: scale(1)}
}

.close-button {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}
.close-button:hover,
.close-button:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Loading animation for Gemini API text output */
.llm-loading-dots {
    display: inline-block;
    overflow: hidden;
    height: 1.2em;
    vertical-align: bottom;
    font-size: 1.5rem;
    line-height: 1;
    color: #f39c12;
}
.llm-loading-dots::after {
    content: ' ...';
    animation: dots 1s steps(3, end) infinite;
}
@keyframes dots {
    0%, 20% { color: rgba(0,0,0,0); text-shadow: .25em 0 0 rgba(0,0,0,0), .5em 0 0 rgba(0,0,0,0); }
    40% { color: #f39c12; text-shadow: .25em 0 0 rgba(0,0,0,0), .5em 0 0 rgba(0,0,0,0); }
    60% { text-shadow: .25em 0 0 #f39c12, .5em 0 0 rgba(0,0,0,0); }
    80%, 100% { text-shadow: .25em 0 0 #f39c12, .5em 0 0 #f39c12; }
}

/* Specific styling for footer logo */
.footer-logo-main {
    font-size: 1.5rem;
    font-weight: 700;
}
.footer-logo-sub {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}
.scrolled-nav {
background-color: rgba(0, 0, 0, 0.9) !important;
transition: background-color 0.3s ease;
}
.fade-in { opacity: 0; animation: fadeInFooter 1.2s ease-in-out 0.2s forwards; }
@keyframes fadeInFooter { to { opacity: 1; } }
@keyframes fadeInHero { from { opacity: 0; } to { opacity: 1; } }
.animate-fadeIn { animation: fadeInHero 1.2s ease-in 0.2s forwards; }
.about-blob-mask {
    width: 380px;
    height: 380px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 12px 50px 0 rgba(0,0,0,0.15);
    clip-path: none;
    background: #f7fafc;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.about-blob-mask:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 60px 0 rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .about-blob-mask { 
        width: 300px; 
        height: 300px; 
        clip-path: none;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .about-blob-mask { 
        width: 250px; 
        height: 250px; 
        clip-path: none;
        border-radius: 16px;
    }
}
/* --- NEW/UPDATED CSS for deck builder/construction style --- */
.blob-mask {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 1;
    clip-path: path('M421.5,307Q393,364,307,393Q221,422,164,366Q107,310,134,221Q161,132,249,120Q337,108,400,179Q463,250,421.5,307Z');
}
.hero-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.18) 60%, rgba(0,0,0,0.45) 100%);
}
.wood-bg {
    background-image: url('../images/images.webp'); /* Use a wood texture image */
    background-size: cover;
    background-repeat: repeat;
    background-blend-mode: multiply;
}
.deck-board-bg {
    background: repeating-linear-gradient(90deg, #e2c799 0 8px, #d1b07a 8px 16px);
}
.construction-lines {
    background: repeating-linear-gradient(135deg, #f3f3f3 0 2px, transparent 2px 20px);
}
.logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 1.5rem 0 2rem 0;
    flex-wrap: wrap;
}
@media (min-width: 640px) {
    .logo-row {
        gap: 2.5rem;
        margin: 2rem 0 3rem 0;
    }
}
.logo-row img, .logo-row i {
    height: 36px;
    width: auto;
    filter: grayscale(0.2) brightness(0.95);
    opacity: 0.85;
    transition: filter 0.2s, opacity 0.2s;
}
@media (min-width: 640px) {
    .logo-row img, .logo-row i {
        height: 48px;
    }
}
.logo-row img:hover, .logo-row i:hover {
    filter: none;
    opacity: 1;
}
/* --- END NEW CSS --- */
/* Home Section */
.home {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    background: url('../images/background.webp') center/cover no-repeat;
    background-attachment: fixed;
}

.home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
}

.home-content {
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.home h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.home p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background-color: #f97316;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .home h1 {
        font-size: 3rem;
    }
    .home p {
        font-size: 1.2rem;
    }
}

/* Service Cards */
.service-card {
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 165, 0, 0.1);
    background: #18181b;
    color: #fff;
}

.service-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 15px rgba(255, 165, 0, 0.2);
    border-color: rgba(255, 165, 0, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(249, 115, 22, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(255, 165, 0, 0.2);
}

.service-card h3 {
    color: #f97316;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: #e5e7eb;
    font-size: 1.05rem;
    font-weight: 400;
}

/* Brand Logos */
.brand-logo {
    transition: all 0.3s ease;
    overflow: hidden;
}

.brand-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.2);
}

.brand-logo img {
    transition: all 0.3s ease;
    max-width: 100%;
    height: auto;
}

.brand-logo:hover img {
    transform: scale(1.1);
}

/* Additional Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.service-card:hover {
    animation: float 3s ease-in-out infinite;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fadeIn {
    animation: fadeIn 1s ease-out forwards;
}

.animation-delay-200 {
    animation-delay: 200ms;
}

.animation-delay-400 {
    animation-delay: 400ms;
}

.cta-button {
    display: inline-block;
    background-color: #f97316;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .text-5xl {
        font-size: 2.5rem;
    }
    .text-xl {
        font-size: 1.1rem;
    }
}

/* Contact Form Focus Effects */
input:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

/* Smooth Transitions */
.contact-transition {
    transition: all 0.3s ease;
}

/* Hover Effects */
.contact-card:hover {
    transform: translateY(-5px);
}

/* Mobile Menu Dropdown Styles */
#mobileMenuDropdown {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#mobileMenuDropdown.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-link {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.mobile-menu-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

/* Ensure mobile menu button is clickable */
#mobileMenuButton {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.2s ease;
    border-radius: 8px;
    padding: 8px;
}

#mobileMenuButton:active {
    transform: scale(0.95);
    background-color: rgba(255, 255, 255, 0.1);
}

#mobileMenuButton:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Hamburger to X animation */
#mobileMenuButton span {
    transition: all 0.3s ease;
}

/* Hamburger to X animation */
#mobileMenuButton.open span:nth-child(1) {
    transform: rotate(45deg) translate(0, 5px);
}

#mobileMenuButton.open span:nth-child(2) {
    opacity: 0;
}

#mobileMenuButton.open span:nth-child(3) {
    transform: rotate(-45deg) translate(0, -5px);
}

/* Make navigation more transparent when mobile menu is open */
nav.mobile-menu-open {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Hide mobile menu on larger screens */
@media (min-width: 768px) {
    #mobileMenuButton {
        display: none !important;
    }
    #mobileMenuDropdown {
        display: none !important;
    }
}

/* Gallery Masonry Layout (from index.html inline styles) */
.gallery-masonry {
    column-count: 1;
    column-gap: 1.25rem;
}

@media (min-width: 640px) {
    .gallery-masonry { column-count: 2; }
}

@media (min-width: 1024px) {
    .gallery-masonry { column-count: 3; }
}

/* Gallery Item Styles (from index.html inline styles) */
.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.25rem;
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.3s;
}

.gallery-item:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
    transform: translateY(-4px) scale(1.03);
}

.gallery-img {
    width: 100%;
    display: block;
    border-radius: 1.25rem;
    transition: transform 0.4s cubic-bezier(.4,2,.6,1), filter 0.3s;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.07);
    filter: brightness(0.95) saturate(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,rgba(0,0,0,0.15) 60%,rgba(249,115,22,0.18) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    border-radius: 1.25rem;
}

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

/* Animated background elements for floating circles */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}
.shape {
    position: absolute;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}
.shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}
.shape:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}
.shape:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Home Hero Vignette Filter */
.home-hero {
    position: relative;
    overflow: hidden;
}
.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/background.webp') center/cover no-repeat;
    opacity: 0.3;
    z-index: 1;
}
.home-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
} 

/* Back to Top Button */
#backToTop {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#backToTop:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
}

#backToTop.visible {
    opacity: 1;
    visibility: visible;
} 