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

/* Screen reader only - for SEO and accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --green: #00ff88;
    --dark-gray: #1a1a1a;
    --light-gray: #333333;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    padding: 1.5rem 0;
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 120px;
    width: auto;
    max-width: 600px;
    object-fit: contain;
}

/* Hide logo in header on home page only */
.home-page .logo-container {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

/* Interactive Hover Button */
.interactive-button {
    color: rgba(144, 238, 144, 0.9); /* Light green text */
    background-color: var(--black); /* Black background */
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    display: inline-block;
    border: 1px solid transparent;
    z-index: 1;
}

.interactive-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.interactive-button:hover {
    color: rgb(0, 100, 0); /* Dark green text */
    border-color: var(--white);
}

.interactive-button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 180px;
    text-align: center;
    width: 100%;
    overflow-x: hidden;
}

.hero-content {
    width: 100%;
    max-width: 100%;
}

.logo-overlay-hero {
    position: absolute;
    top: -3%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 10;
    pointer-events: none;
}

.hero-logo {
    display: block;
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.8));
}

.hero-image-fullwidth {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

/* Tilted Card (reactbits-like) */
.tilted-card {
    margin: 0 auto 2.5rem;
    perspective: 1200px;
    width: min(90%, 960px);
}

.hero-image-card {
    margin: 0;
    width: 100%;
    max-width: 100%;
}

/* Spotlight Card */
.spotlight-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--black);
}

.spotlight-card-image {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 0;
}

.spotlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 255, 255, 0.25),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.spotlight-card:hover::before {
    opacity: 1;
}

.spotlight-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        transparent 40%,
        rgba(0, 0, 0, 0.4) 80%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.spotlight-card:hover::after {
    opacity: 1;
}

.hero-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Contact Cards Container */
.contact-cards-container {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Contact Card */
.contact-card {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex: 1 1 400px;
    min-width: 300px;
    max-width: 400px;
}

.contact-card-content {
    background-color: var(--dark-gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.contact-card-content p {
    margin: 0.5rem 0;
    color: rgba(144, 238, 144, 0.9);
    font-size: 1.1rem;
}

.contact-phone {
    font-size: 1.1rem !important;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.contact-phone a {
    color: rgba(144, 238, 144, 0.9) !important;
    text-decoration: none;
}

.contact-phone a:hover {
    color: rgba(144, 238, 144, 1) !important;
    text-decoration: underline;
}

.contact-email {
    font-size: 1.1rem !important;
    color: rgba(144, 238, 144, 0.9) !important;
    margin-top: 0.5rem !important;
}

.contact-email a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-email a:hover {
    color: var(--white);
    text-decoration: underline;
}

.contact-address {
    margin-top: 0 !important;
    padding-top: 0;
    border-top: none;
}

.contact-address p {
    margin: 0.5rem 0;
    font-size: 1rem !important;
    color: rgba(144, 238, 144, 0.9) !important;
    line-height: 1.6;
}

.tilted-card-inner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 200ms ease, box-shadow 200ms ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.tilted-card:hover .tilted-card-inner {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.tilted-card-image {
    display: block;
    width: 100%;
    height: auto;
}

.logo-image {
    object-fit: contain;
    background: transparent;
}

.tilted-card-border {
    pointer-events: none;
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    mix-blend-mode: screen;
}

.tilted-card-glare {
    pointer-events: none;
    position: absolute;
    inset: -20%;
    background: radial-gradient(600px 400px at var(--mx,50%) var(--my,50%), rgba(255,255,255,0.25), transparent 40%);
    transform: translateZ(60px);
    opacity: 0.6;
}

.cta-button {
    color: rgba(144, 238, 144, 0.9); /* Light green text */
    background-color: var(--dark-gray); /* Card background color */
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    display: inline-block;
    border: 1px solid transparent;
    z-index: 1;
    text-transform: none;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.cta-button:hover {
    color: rgb(0, 100, 0); /* Dark green text */
    border-color: var(--white);
}

.cta-button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Sections */
section {
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Standalone page sections */
section.products:first-of-type,
section.about:first-of-type {
    padding-top: 180px;
    min-height: calc(100vh - 200px);
}

section.products:first-of-type .container,
section.about:first-of-type .container {
    width: 100%;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    letter-spacing: 1.5px;
    margin-bottom: 3rem;
    text-align: center;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.product-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--dark-gray);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.product-placeholder {
    width: 100%;
    height: 250px;
    background-color: var(--light-gray);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    display: block;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.product-image:hover {
    transform: scale(1.02);
}

.product-card h2,
.product-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.product-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* Suppliers Intro */
.suppliers-intro {
    margin-top: 4rem;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.suppliers-intro p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* Suppliers Card */
.suppliers-card {
    max-width: 1200px;
    margin: 4rem auto 0;
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: 12px;
}

.suppliers-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.suppliers-content a {
    display: inline-block;
    text-decoration: none;
}

.supplier-logo {
    height: 60px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: opacity 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.supplier-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 45px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
    line-height: 1;
}

.lightbox-close:hover {
    color: rgba(255, 255, 255, 0.7);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.2rem;
    text-align: center;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
}

/* About Section */
.about-content-wrapper {
    display: flex;
    align-items: stretch;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.about-image {
    flex: 1 1 500px;
    min-width: 300px;
    max-width: 500px;
}

.about-hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.about-text-card {
    flex: 1 1 500px;
    min-width: 300px;
    max-width: 500px;
}

.about-card-content {
    background-color: var(--dark-gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.about-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.about-bullet-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-bullet-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(144, 238, 144, 0.9);
    font-size: 1.5rem;
    line-height: 1.2;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 4rem;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

/* Google Reviews Card */
.google-reviews-card {
    margin-top: 4rem;
    text-align: center;
}

.social-icons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: nowrap;
}

.google-reviews-link,
.instagram-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.google-reviews-link:hover,
.instagram-link:hover {
    transform: scale(1.05);
}

.google-reviews-image,
.instagram-image {
    width: 75px;
    height: auto;
    display: block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.google-reviews-image {
    border-radius: 12px;
}

/* Contact Section */
.contacts-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.contact-info-card {
    width: 100%;
    max-width: 700px;
    background-color: var(--dark-gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
}

.contact-form-card {
    width: 100%;
    max-width: 700px;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: rgba(144, 238, 144, 0.9);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-info-content {
    text-align: left;
}

.contact-info-content > p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-info {
    margin-top: 2rem;
}

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

.contact-info a {
    color: rgba(144, 238, 144, 0.9);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form-card {
    background-color: var(--dark-gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
}

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

.form-option-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.form-option {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-option:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(144, 238, 144, 0.5);
}

.form-option input[type="radio"] {
    margin-right: 0.75rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: rgba(144, 238, 144, 0.9);
}

.form-option input[type="radio"]:checked + span {
    color: rgba(144, 238, 144, 0.9);
}

.form-option span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

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

.form-group label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 400;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(144, 238, 144, 0.5);
    background-color: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group input[type="file"] {
    padding: 0.5rem;
    cursor: pointer;
}

.form-group input[type="file"]::file-selector-button {
    padding: 0.5rem 1rem;
    background-color: rgba(144, 238, 144, 0.2);
    border: 1px solid rgba(144, 238, 144, 0.5);
    border-radius: 6px;
    color: rgba(144, 238, 144, 0.9);
    cursor: pointer;
    margin-right: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input[type="file"]::file-selector-button:hover {
    background-color: rgba(144, 238, 144, 0.3);
}

.form-group small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.form-submit-button {
    padding: 1rem 2rem;
    background-color: rgba(144, 238, 144, 0.2);
    border: 1px solid rgba(144, 238, 144, 0.5);
    border-radius: 8px;
    color: rgba(144, 238, 144, 0.9);
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-family: 'Inter', sans-serif;
}

.form-submit-button:hover {
    background-color: rgba(144, 238, 144, 0.3);
    border-color: rgba(144, 238, 144, 0.8);
    transform: translateY(-2px);
}

/* Thank You Section */
.thank-you-section {
    padding-top: 180px;
    min-height: calc(100vh - 200px);
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
}

.thank-you-content p {
    font-size: 1.1rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

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

.contact-info {
    margin-top: 2rem;
}

.contact-info p {
    font-size: 1rem;
    margin: 1rem 0;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Style tel: links (phone numbers) to be light green */
a[href^="tel:"] {
    color: rgba(144, 238, 144, 0.9) !important;
    text-decoration: none;
}

a[href^="tel:"]:hover {
    color: rgba(144, 238, 144, 1) !important;
    text-decoration: underline;
}

.contact-info strong {
    color: var(--white);
    font-weight: 400;
}

/* Contacts Section */
.contacts-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 180px;
}

.contacts-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contacts-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2rem;
}

/* Installations Section */
.installations-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 180px;
}

.installations-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
    text-align: center;
}

.installations-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2rem;
}

.installations-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-align: center;
}

/* Chroma Grid Cards */
.chroma-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding: 2rem 0;
}

.chroma-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--dark-gray);
    aspect-ratio: 4 / 3;
    cursor: pointer;
}

.chroma-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

.chroma-card-image-6 {
    object-position: center top;
}

.chroma-card-border {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(
        45deg,
        #ff0080,
        #ff8c00,
        #40e0d0,
        #ff0080,
        #ff8c00,
        #40e0d0
    );
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: chroma-gradient 3s ease infinite;
    z-index: 1;
}

.chroma-card:hover .chroma-card-border {
    opacity: 1;
}

@keyframes chroma-gradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Footer */
footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: var(--dark-gray);
}

footer p {
    color: rgba(144, 238, 144, 0.9);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    color: rgba(144, 238, 144, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: rgba(144, 238, 144, 1);
    text-decoration: underline;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .about-content-wrapper {
        justify-content: center;
    }

    .about-image,
    .about-text-card {
        max-width: 100%;
        width: 100%;
    }

    .logo {
        height: 90px;
    }

    .hero {
        padding-top: 120px;
    }


    .hero-image-fullwidth {
        padding: 0 1rem;
        margin-left: -50vw;
        margin-right: -50vw;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .logo {
        height: 80px;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
    }
}

