/* Temporarily hide team section */
.team-section {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
}

#team {
    display: none !important;
    visibility: hidden !important;
}

/* CSS Custom Properties */
:root {
    /* Primary Colors */
    --primary-color: #FF6B00;
    --primary-hover: #FF8534;
    --primary-gradient: linear-gradient(135deg, #FF6B00 0%, #FF8534 100%);

    /* Background Colors */
    --background-color: 255, 255, 255;
    --accent-color: 255, 107, 0;

    /* Text Colors */
    --text-color: 33, 33, 33;

    /* Spacing System */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;

    /* Typography */
    --font-primary: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Layout */
    --container-width: 1200px;
    --border-radius: 0.5rem;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Gradients */
    --card-gradient: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 248, 248, 0.8) 100%);
}

/* Optimized Reset and Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
}

/* Performance optimizations */
img, video, iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

main {
    min-height: calc(100vh - 200px);
}

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

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

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

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

.nav-logo h2 {
    font-family: var(--font-secondary);
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-link {
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    color: hsl(var(--text-color));
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    background: none;
    border: none;
    padding: 5px;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #333333;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, 
        var(--background-color) 0%, 
        rgba(255, 240, 230, 0.5) 100%);
    overflow: hidden;
}

.hero-bg-logo {
    position: absolute;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.03;
}

.hero-bg-logo-image {
    width: 600px;
    height: 600px;
    animation: slowRotate 60s linear infinite;
}

@keyframes slowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-flex;
    align-items: center;
}

.logo-in-title {
    width: 0.8em;
    height: 0.8em;
    border-radius: 50%;
    margin: 0 2px;
    display: inline-block;
    vertical-align: baseline;
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { 
        transform: scale(1);
        filter: brightness(1);
    }
    50% { 
        transform: scale(1.1);
        filter: brightness(1.2);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(26, 26, 26, 0.7);
    margin-bottom: var(--spacing-lg);
    max-width: 500px;
}

.cta-button,
.catalogue-cta-btn,
.submit-btn {
    background: var(--primary-gradient);
    color: white;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    justify-content: center;
    min-width: 200px;
}

.cta-button:hover,
.catalogue-cta-btn:hover,
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.cta-button i,
.catalogue-cta-btn i,
.submit-btn i {
    transition: var(--transition-smooth);
}

.cta-button:hover i,
.catalogue-cta-btn:hover i,
.submit-btn:hover i {
    transform: translateX(4px);
}

/* Hero VR Section */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-vr-section {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    animation: vrFloat 4s ease-in-out infinite;
}

.hero-vr-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.hero-vr-section:hover .hero-vr-image {
    transform: scale(1.05);
}

.vr-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, hsla(var(--text-color), 0.8));
    color: white;
    padding: var(--spacing-lg);
    text-align: center;
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.hero-vr-section:hover .vr-overlay {
    transform: translateY(0);
}

.vr-overlay h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: white;
}

.vr-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

@keyframes vrFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    color: hsla(var(--text-color), 0.6);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid currentColor;
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 6px;
    background-color: currentColor;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 24px; }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: hsla(var(--text-color), 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Catalogue Section */
.catalogue-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, 
        hsla(var(--primary-color), 0.05) 0%, 
        hsla(var(--accent-color), 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.catalogue-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FF6B00' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    z-index: 1;
}

.catalogue-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.catalogue-text {
    max-width: 600px;
}

.catalogue-title {
    font-family: var(--font-secondary);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.catalogue-description {
    font-size: 1.1rem;
    color: hsla(var(--text-color), 0.8);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.catalogue-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 500;
    color: hsl(var(--text-color));
}

.feature-item i {
    width: 20px;
    color: hsl(var(--primary-color));
    font-size: 1.1rem;
}

.catalogue-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.catalogue-cta-btn:hover::before {
    left: 100%;
}

.catalogue-cta-btn {
    position: relative;
    overflow: hidden;
}



/* Products Section */
.products-section {
    background: linear-gradient(180deg, 
        hsla(var(--background-color), 1) 0%, 
        hsla(var(--accent-color), 0.3) 100%);
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: var(--spacing-sm) var(--spacing-md);
    background: transparent;
    border: 2px solid rgba(255, 107, 0, 0.2);
    border-radius: var(--border-radius);
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.product-card {
    transition: var(--transition-smooth);
    opacity: 1;
    transform: translateY(0) scale(1);
}

.product-card.hidden {
    display: none !important;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    background: hsla(var(--text-color), 0.05);
}

.product-image img[src*="data:image/svg+xml"] {
    object-fit: contain;
    background: hsla(var(--text-color), 0.03);
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: hsla(var(--text-color), 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-btn {
    background: var(--primary-gradient);
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    font-weight: 600;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.product-card:hover .product-btn {
    transform: translateY(0);
}

.product-info {
    padding: var(--spacing-md);
}

.product-title {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.product-description {
    color: hsla(var(--text-color), 0.7);
    margin-bottom: var(--spacing-sm);
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Meet the Team Section */
.team-section {
    background: #ffffff;
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.team-content {
    position: relative;
    z-index: 2;
}

.team-decorative-curve {
    position: absolute;
    top: -20px;
    right: 0;
    width: 200px;
    height: 100px;
    color: hsla(var(--accent-color), 0.2);
    z-index: 1;
}

.team-decorative-curve svg {
    width: 100%;
    height: 100%;
}

.team-intro {
    text-align: left;
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 2;
}

.team-intro h2 {
    font-family: var(--font-secondary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    margin-bottom: var(--spacing-md);
    color: #1a1a1a;
    line-height: 1.2;
    max-width: 800px;
}

.team-intro h2 em {
    font-style: italic;
    font-weight: 300;
    color: #1a1a1a;
}

.team-intro p {
    font-size: 1.1rem;
    color: #666666;
    max-width: 550px;
    margin: 0;
    line-height: 1.6;
}

.team-intro p em {
    font-style: italic;
    color: #1a1a1a;
    font-weight: 500;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.team-member {
    background: transparent;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
}

.team-photo {
    width: 280px;
    height: 350px;
    margin: 0 auto var(--spacing-md);
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 8px;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-smooth);
}

.team-member:hover .team-photo img {
    transform: scale(1.05);
}

.team-name {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: var(--spacing-xs);
}

.team-role {
    font-size: 1rem;
    font-weight: 400;
    color: #666666;
    margin: 0;
    text-transform: none;
    letter-spacing: normal;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .team-photo {
        width: 240px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .team-intro {
        text-align: center;
    }
    
    .team-intro h2 {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .team-intro p {
        margin: 0 auto;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .team-photo {
        width: 220px;
        height: 280px;
    }
    
    .team-decorative-curve {
        display: none;
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* About Section */
.about-section {
    background: var(--background-color);
}

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

.about-description {
    font-size: 1.1rem;
    color: hsla(var(--text-color), 0.8);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    text-align: left;
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    background: var(--card-gradient);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.feature-content h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.feature-content p {
    color: hsla(var(--text-color), 0.7);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(180deg, 
        hsla(var(--accent-color), 0.3) 0%, 
        hsla(var(--background-color), 1) 100%);
    padding-bottom: var(--spacing-xl);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .map-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .map-actions {
        flex-direction: column;
    }

    .map-link,
    .directions-link {
        justify-content: center;
        width: 100%;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.store-location {
    background: hsl(var(--background-color));
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.store-location h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.location-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.location-item i {
    color: var(--primary-color);
    width: 20px;
}

/* Google Maps Integration */
.map-container {
    background: hsl(var(--background-color));
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    margin-top: var(--spacing-md);
}

.map-container h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
}

.map-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--spacing-md);
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 300px;
    border: none;
    filter: grayscale(20%);
    transition: filter var(--transition-smooth);
}

.map-wrapper:hover iframe {
    filter: grayscale(0%);
}

.map-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.map-link,
.directions-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
}

.map-link:hover,
.directions-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    color: white;
}

.directions-link {
    background: linear-gradient(135deg, hsl(120, 70%, 50%), hsl(120, 70%, 40%));
}

.contact-form {
    background: hsl(var(--background-color));
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid hsla(var(--text-color), 0.15);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: hsl(var(--background-color));
    box-shadow: var(--shadow-sm);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: hsl(var(--primary-color));
    box-shadow: 0 0 0 3px hsla(var(--primary-color), 0.1), var(--shadow-md);
    transform: translateY(-1px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: hsla(var(--text-color), 0.25);
    box-shadow: var(--shadow-md);
}

.submit-btn {
    width: 100%;
}



/* Footer */
.footer {
    background: #333333;
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xl);
}

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

.footer-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    border-radius: 50%;
}

.footer-brand h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.footer-column h4 {
    font-family: var(--font-secondary);
    color: white;
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: var(--spacing-sm);
    transition: var(--transition-smooth);
}

.footer-column a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: var(--spacing-sm);
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 0;
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    background: #FF8534;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-md);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.6);
}



/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.animate-fade-in {
    animation: fadeInUp 1s ease;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.notification {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border-left: 4px solid currentColor;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-close {
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    margin-left: auto;
    color: inherit;
    padding: 4px;
    border-radius: 4px;
}

.notification-close:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.1);
}

.field-error {
    animation: shake 0.3s ease-in-out;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex !important;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: all 0.5s ease;
        backdrop-filter: blur(20px);
        z-index: 1000;
        gap: var(--spacing-md);
        padding-top: var(--spacing-xl);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: var(--spacing-md) 0;
        text-align: center;
    }

    .nav-link {
        font-size: 1.1rem;
        font-weight: 600;
        color: hsl(var(--text-color));
        text-decoration: none;
        padding: var(--spacing-sm) var(--spacing-md);
        border-radius: var(--border-radius);
        transition: all 0.3s ease;
        display: block;
        position: relative;
    }

    .nav-link:hover {
        background: hsla(var(--primary-color), 0.1);
        color: var(--primary-color);
        transform: scale(1.05);
    }

    /* Hamburger Animation */
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Catalogue Mobile Styles */
    .catalogue-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }

    .catalogue-title {
        font-size: 2.2rem;
    }

    .catalogue-description {
        font-size: 1rem;
    }

    .catalogue-features {
        align-items: center;
    }

    .catalogue-preview {
        transform: perspective(800px) rotateY(0deg);
        margin-top: var(--spacing-md);
    }

    .catalogue-preview:hover {
        transform: perspective(800px) rotateY(0deg) scale(1.02);
    }

    .catalogue-mockup {
        width: 280px;
    }

    .whatsapp-indicator {
        bottom: -15px;
        right: -15px;
        font-size: 0.7rem;
        padding: 6px var(--spacing-xs);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .hero-visual {
        height: 250px;
        order: -1;
    }

    .hero {
        min-height: 60vh;
        padding: var(--spacing-lg) 0;
    }

    .hero-vr-section {
        height: 100%;
        border-radius: var(--border-radius);
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        line-height: 1.1;
        margin-bottom: var(--spacing-lg);
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: var(--spacing-xl);
        padding: 0 var(--spacing-sm);
    }

    .cta-button {
        font-size: 1rem;
        padding: var(--spacing-md) var(--spacing-lg);
    }

    .vr-overlay {
        padding: var(--spacing-md);
    }

    .vr-overlay h3 {
        font-size: 1.25rem;
    }

    .vr-overlay p {
        font-size: 0.9rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .category-filters {
        gap: var(--spacing-sm);
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .footer-brand {
        margin-bottom: var(--spacing-lg);
    }

    .logo-image {
        width: 35px;
        height: 35px;
    }

    .nav-logo h2 {
        font-size: 1.3rem;
    }

    .hero-bg-logo {
        right: -300px;
        opacity: 0.02;
    }

    .hero-bg-logo-image {
        width: 400px;
        height: 400px;
    }

    .footer-logo-image {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

    .container {
        padding: 0 var(--spacing-sm);
    }

    .logo-image {
        width: 30px;
        height: 30px;
    }

    .nav-logo h2 {
        font-size: 1.2rem;
    }

    .hero-bg-logo {
        display: none;
    }

    .footer-logo-image {
        width: 35px;
        height: 35px;
    }

    .logo-in-title {
        width: 0.7em;
        height: 0.7em;
        margin: 0 1px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .team-photo {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .team-name {
        font-size: 1.3rem;
    }

    .team-role {
        font-size: 1rem;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: #25d366;
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
}

.whatsapp-float a:hover {
    background: #128c7e;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-float a:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.whatsapp-float i {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

.whatsapp-text {
    font-size: 0.9rem;
    margin: 0;
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0px);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    pointer-events: none;
    z-index: 10001;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.85);
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobile responsiveness for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float a {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.9rem;
    }

    .whatsapp-text {
        display: none;
    }

    .whatsapp-float a {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }

    .whatsapp-float i {
        font-size: 1.3rem;
    }

    .whatsapp-tooltip {
        font-size: 0.75rem;
        padding: 6px 10px;
        bottom: 110%;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 10px;
        right: 10px;
    }

    .whatsapp-float a {
        width: 45px;
        height: 45px;
    }

    .whatsapp-float i {
        font-size: 1.2rem;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}