@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #1e3a8a; /* Royal blue */
    --secondary-color: #2563eb; /* Lighter royal blue */
    --accent-color: #3b82f6; /* Even lighter blue for accents */
    --text-color: #1e3a8a; /* Dark blue for text */
    --light-text: #ffffff; /* White text */
    --background-color: #ffffff; /* White background */
    --light-background: #f0f4ff; /* Very light blue background */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    width: 100%;
    position: relative;
}

.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--light-background);
}

/* Glassmorphism Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(30, 58, 138, 0.8); /* Royal blue with transparency */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    padding: 15px 30px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: clamp(18px, 4vw, 24px);
    font-weight: 700;
    color: var(--light-text);
    text-decoration: none;
    display: flex;
    align-items: center;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: clamp(15px, 3vw, 30px);
}

nav a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(14px, 1.5vw, 16px);
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--light-text);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 24px;
    cursor: pointer;
    z-index: 1100;
    position: relative;
}

/* Floating elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    backdrop-filter: blur(5px);
    animation: float 15s infinite ease-in-out;
    z-index: -1;
}

.floating-element:nth-child(1) {
    width: 15vw;
    height: 15vw;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 20vw;
    height: 20vw;
    bottom: 15%;
    left: 5%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 10vw;
    height: 10vw;
    top: 40%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, 15px) rotate(5deg); }
    50% { transform: translate(5px, -10px) rotate(0deg); }
    75% { transform: translate(-10px, 5px) rotate(-5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(15px, 5vw, 40px);
    position: relative;
    z-index: 1;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow-x: hidden;
}

/* Hero content */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(20px, 4vw, 40px);
    align-items: center;
    padding: clamp(10px, 3vh, 30px) 0 clamp(20px, 6vh, 60px);
    flex-grow: 1;
    width: 100%;
    max-width: 100%;
}

.hero-text {
    color: var(--text-color);
    max-width: 100%;
    overflow-wrap: break-word;
}

.hero-text h1 {
    font-size: clamp(1.6rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: clamp(10px, 2vh, 20px);
    color: var(--primary-color);
    word-wrap: break-word;
    hyphens: auto;
}

.hero-text p {
    font-size: clamp(0.9rem, 1.8vw, 1.2rem);
    line-height: 1.7;
    margin-bottom: clamp(15px, 3vh, 30px);
    max-width: 500px;
    opacity: 0.95;
    word-wrap: break-word;
    color: var(--text-color);
}

.cta-buttons {
    display: flex;
    gap: clamp(10px, 2vw, 20px);
    margin-top: clamp(20px, 4vh, 40px);
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: clamp(10px, 2vw, 15px) clamp(15px, 3vw, 30px);
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(14px, 1.6vw, 16px);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.cta-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(45deg);
    transition: all 0.8s ease;
}

.cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(30, 58, 138, 0.4);
    background-color: var(--secondary-color);
}

.cta-primary:hover::after {
    left: 100%;
}

.cta-secondary {
    background-color: rgba(37, 99, 235, 0.15);
    backdrop-filter: blur(10px);
    color: var(--primary-color);
    border: 1px solid rgba(37, 99, 235, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(37, 99, 235, 0.15);
    transition: all 0.3s ease;
    z-index: -1;
}

.cta-secondary:hover {
    transform: translateY(-5px);
    color: var(--primary-color);
}

.cta-secondary:hover::before {
    width: 100%;
}

.cta-primary i, .cta-secondary i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.cta-primary:hover i, .cta-secondary:hover i {
    transform: translateX(5px);
}

/* 3D Model Container */
.model-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 100%;
    overflow: hidden;
}

.model-viewer-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    height: clamp(280px, 60vh, 700px);
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background-color: transparent;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.2);
}

.model-viewer-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 138, 0.1);
    pointer-events: none;
    z-index: 2;
    border-radius: 20px;
    box-shadow: inset 0 0 30px 10px rgba(30, 58, 138, 0.2);
}

.model-viewer-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 15px 5px var(--light-background);
    pointer-events: none;
    z-index: 3;
}

.iframe-container {
    position: absolute;
    top: -60px;
    left: -25px;
    width: calc(100% + 50px);
    height: calc(100% + 120px);
    z-index: 1;
}

.iframe-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.custom-model-controls {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    pointer-events: none;
}

.custom-model-instructions {
    background-color: rgba(30, 58, 138, 0.7);
    backdrop-filter: blur(10px);
    color: var(--light-text);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    border: 1px solid rgba(255, 255, 255, 0.15);
    pointer-events: all;
}

.custom-model-instructions i {
    color: var(--light-text);
}

/* Corner gradient overlays to blend the iframe corners */
.corner-overlay {
    position: absolute;
    width: 100px;
    height: 100px;
    z-index: 4;
    pointer-events: none;
}

.corner-overlay.top-left {
    top: 0;
    left: 0;
    background: radial-gradient(circle at top left, var(--light-background) 0%, transparent 70%);
    border-top-left-radius: 20px;
}

.corner-overlay.top-right {
    top: 0;
    right: 0;
    background: radial-gradient(circle at top right, var(--light-background) 0%, transparent 70%);
    border-top-right-radius: 20px;
}

.corner-overlay.bottom-left {
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at bottom left, var(--light-background) 0%, transparent 70%);
    border-bottom-left-radius: 20px;
}

.corner-overlay.bottom-right {
    bottom: 0;
    right: 0;
    background: radial-gradient(circle at bottom right, var(--light-background) 0%, transparent 70%);
    border-bottom-right-radius: 20px;
}

/* Edge overlays to blend the iframe edges */
.edge-overlay {
    position: absolute;
    z-index: 4;
    pointer-events: none;
}

.edge-overlay.top {
    top: 0;
    left: 50px;
    right: 50px;
    height: 35px;
    background: linear-gradient(to bottom, var(--light-background) 0%, transparent 100%);
}

.edge-overlay.bottom {
    bottom: 0;
    left: 50px;
    right: 50px;
    height: 50px;
    background: linear-gradient(to top, var(--light-background) 0%, transparent 100%);
}

.edge-overlay.left {
    left: 0;
    top: 50px;
    bottom: 50px;
    width: 35px;
    background: linear-gradient(to right, var(--light-background) 0%, transparent 100%);
}

.edge-overlay.right {
    right: 0;
    top: 50px;
    bottom: 50px;
    width: 35px;
    background: linear-gradient(to left, var(--light-background) 0%, transparent 100%);
}

.custom-interaction-instructions {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background-color: rgba(30, 58, 138, 0.7);
    backdrop-filter: blur(5px);
    color: var(--light-text);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0.8;
    transition: opacity 0.3s ease;
    max-width: 90%;
    text-align: center;
}

/* 3D Model Loader Styles */
.model-loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(30, 58, 138, 0.85) 0%, 
        rgba(37, 99, 235, 0.15) 50%, 
        rgba(30, 58, 138, 0.85) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: all 0.5s ease;
}

.model-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    max-width: 90%;
    padding: clamp(20px, 5vw, 40px);
}

/* Animated spinner rings */
.loader-spinner {
    position: relative;
    width: clamp(60px, 15vw, 100px);
    height: clamp(60px, 15vw, 100px);
    margin: 0 auto clamp(20px, 4vw, 30px);
}

.spinner-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

.spinner-ring:nth-child(1) {
    border-top-color: var(--secondary-color);
    animation-duration: 2s;
}

.spinner-ring:nth-child(2) {
    border-right-color: var(--primary-color);
    animation-duration: 1.5s;
    animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
    border-bottom-color: var(--accent-color);
    animation-duration: 1s;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Loader text */
.loader-text h3 {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: clamp(5px, 1vw, 10px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.loader-text p {
    font-size: clamp(0.85rem, 2vw, 1rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: clamp(15px, 3vw, 25px);
    font-weight: 400;
}

/* Animated loading dots */
.loading-dots {
    display: flex;
    justify-content: center;
    gap: clamp(4px, 1vw, 8px);
    margin-bottom: clamp(20px, 4vw, 30px);
}

.loading-dots span {
    width: clamp(6px, 1.5vw, 10px);
    height: clamp(6px, 1.5vw, 10px);
    background-color: var(--light-text);
    border-radius: 50%;
    animation: dotBounce 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }
.loading-dots span:nth-child(3) { animation-delay: 0s; }

@keyframes dotBounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Progress bar */
.loader-progress {
    width: 100%;
    max-width: clamp(200px, 50vw, 300px);
    margin: 0 auto;
}

.progress-bar {
    width: 100%;
    height: clamp(4px, 1vw, 6px);
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: clamp(8px, 2vw, 12px);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    background-size: 200% 100%;
    border-radius: 10px;
    width: 0%;
    transition: width 0.3s ease;
    animation: gradientShift 2s linear infinite;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        transparent 100%);
    animation: shine 1.5s ease-in-out infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    font-size: clamp(0.75rem, 1.8vw, 0.9rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    display: block;
    text-align: center;
}

/* Full Screen Kitchen Loader */
.fullscreen-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, 
        rgba(30, 58, 138, 0.95) 0%, 
        rgba(37, 99, 235, 0.2) 30%,
        rgba(59, 130, 246, 0.15) 70%,
        rgba(30, 58, 138, 0.95) 100%);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all 0.8s ease;
    overflow: hidden;
}

.fullscreen-loader.hidden {
    opacity: 0;
    transform: scale(1.1);
    pointer-events: none;
}

.loader-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.kitchen-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.kitchen-icon {
    position: absolute;
    font-size: clamp(40px, 8vw, 80px);
    color: rgba(255, 255, 255, 0.1);
    animation: floatKitchen 8s ease-in-out infinite;
}

.kitchen-icon.cabinet {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.kitchen-icon.stove {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.kitchen-icon.fridge {
    bottom: 25%;
    left: 8%;
    animation-delay: 4s;
}

.kitchen-icon.sink {
    bottom: 15%;
    right: 12%;
    animation-delay: 6s;
}

@keyframes floatKitchen {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.08;
    }
    25% { 
        transform: translateY(-20px) rotate(2deg); 
        opacity: 0.12;
    }
    50% { 
        transform: translateY(-10px) rotate(0deg); 
        opacity: 0.1;
    }
    75% { 
        transform: translateY(-30px) rotate(-2deg); 
        opacity: 0.08;
    }
}

.fullscreen-loader .loader-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 500px;
    width: 90%;
    padding: clamp(30px, 6vw, 60px);
}

.brand-section {
    margin-bottom: clamp(30px, 6vw, 50px);
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 2vw, 15px);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--light-text);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: clamp(10px, 2vw, 15px);
}

.brand-logo i {
    color: var(--light-text);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.fullscreen-loader .loader-spinner {
    width: clamp(80px, 18vw, 120px);
    height: clamp(80px, 18vw, 120px);
    margin: 0 auto clamp(25px, 5vw, 40px);
}

.fullscreen-loader .spinner-ring {
    border-width: clamp(3px, 0.8vw, 5px);
}

.fullscreen-loader .loader-text h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: clamp(10px, 2vw, 15px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.loading-message {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: clamp(20px, 4vw, 30px);
    font-weight: 500;
    transition: all 0.5s ease;
    min-height: clamp(20px, 4vw, 26px);
}

.fullscreen-loader .loading-dots {
    margin-bottom: clamp(25px, 5vw, 40px);
}

.fullscreen-loader .loading-dots span {
    width: clamp(8px, 2vw, 12px);
    height: clamp(8px, 2vw, 12px);
}

.fullscreen-loader .loader-progress {
    max-width: clamp(250px, 60vw, 400px);
    margin: 0 auto clamp(25px, 5vw, 40px);
}

.fullscreen-loader .progress-bar {
    height: clamp(6px, 1.5vw, 8px);
    margin-bottom: clamp(10px, 2vw, 15px);
}

.kitchen-features {
    display: flex;
    justify-content: center;
    gap: clamp(20px, 5vw, 40px);
    flex-wrap: wrap;
    margin-top: clamp(20px, 4vw, 30px);
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(5px, 1vw, 8px);
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.75rem, 1.8vw, 0.9rem);
    text-align: center;
    min-width: clamp(80px, 20vw, 120px);
}

.feature i {
    font-size: clamp(20px, 4vw, 28px);
    color: var(--light-text);
    margin-bottom: clamp(2px, 0.5vw, 5px);
    animation: featureGlow 3s ease-in-out infinite;
}

.feature:nth-child(1) i { animation-delay: 0s; }
.feature:nth-child(2) i { animation-delay: 1s; }
.feature:nth-child(3) i { animation-delay: 2s; }

@keyframes featureGlow {
    0%, 100% { 
        opacity: 0.8; 
        transform: scale(1);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.05);
        text-shadow: 0 0 10px var(--light-text);
    }
}

/* Fallback Image Styles */
.fallback-image-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
}

.fallback-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.fallback-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.fallback-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(30, 58, 138, 0.7) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(30, 58, 138, 0.8) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.fallback-text {
    text-align: center;
    color: var(--light-text);
    padding: clamp(20px, 4vw, 40px);
    max-width: 90%;
}

.fallback-text h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: clamp(10px, 2vw, 15px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.fallback-text p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    margin-bottom: clamp(20px, 4vw, 30px);
    opacity: 0.95;
    line-height: 1.6;
}

.fallback-features {
    display: flex;
    justify-content: center;
    gap: clamp(15px, 3vw, 25px);
    flex-wrap: wrap;
}

.fallback-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(5px, 1vw, 8px);
    min-width: clamp(70px, 15vw, 100px);
}

.fallback-feature i {
    font-size: clamp(18px, 3vw, 24px);
    color: var(--accent-color);
    margin-bottom: clamp(2px, 0.5vw, 5px);
}

.fallback-feature span {
    font-size: clamp(0.7rem, 1.5vw, 0.85rem);
    text-align: center;
    opacity: 0.9;
}

/* Timeline Section Styles */
.timeline-section {
    min-height: 700px;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--light-text);
}

.timeline-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.wave-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.timeline-section .kitchen-icon {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.15;
    animation: float 25s ease-in-out infinite;
}

.icon-1 { top: 10%; left: 5%; animation-delay: 0s; }
.icon-2 { top: 20%; right: 8%; animation-delay: 8s; }
.icon-3 { bottom: 15%; left: 10%; animation-delay: 16s; }
.icon-4 { top: 60%; right: 15%; animation-delay: 20s; }

.timeline-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.timeline-header {
    text-align: center;
    margin-bottom: 40px;
}

.timeline-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.timeline-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 300;
}

/* Carousel Styles */
.timeline-carousel-wrapper {
    width: 100%;
    margin-bottom: 40px;
    position: relative;
}

.timeline-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    gap: 20px;
}

.nav-button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.year-indicator {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 20px;
    padding: 8px 20px;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
    min-width: 140px;
    text-align: center;
}

.timeline-carousel {
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
}

.timeline-track {
    display: flex;
    transition: transform 0.5s ease;
}

.timeline-slide {
    flex: 0 0 100%;
    padding: 0;
}

.slide-content-wrapper {
    display: flex;
    gap: 20px;
    padding: 0 10px;
}

.year-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 20px;
    color: white;
    transition: all 0.3s ease;
    transform: translateY(0);
    animation: cardFadeIn 0.5s ease-out forwards;
    opacity: 0;
}

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.year-card:nth-child(1) { animation-delay: 0.1s; }
.year-card:nth-child(2) { animation-delay: 0.2s; }
.year-card:nth-child(3) { animation-delay: 0.3s; }

.year-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.point-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    margin-right: 15px;
    flex-shrink: 0;
}

.point-marker::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    filter: blur(15px);
    opacity: 0.4;
    z-index: -1;
}

.point-marker .year {
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.point-marker .icon {
    font-size: 0.9rem;
    line-height: 1;
    margin-top: 2px;
}

.year-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--light-text);
}

.year-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.year-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.year-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.year-card:hover .point-marker {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.5);
}

.timeline-progress {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.progress-dots {
    display: flex;
    gap: 8px;
}

.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.progress-dot.active {
    background: var(--light-text);
    width: 16px;
    border-radius: 4px;
}

.timeline-autoplay {
    display: flex;
    justify-content: center;
}

.autoplay-button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.autoplay-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.autoplay-button .play-icon,
.autoplay-button .pause-icon {
    width: 16px;
    height: 16px;
}

.autoplay-button .pause-icon {
    display: none;
}

.autoplay-button.playing .play-icon {
    display: none;
}

.autoplay-button.playing .pause-icon {
    display: block;
}

.timeline-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(30, 58, 138, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

/* Featured Products Section */
.featured-products-section {
    min-height: 100vh;
    padding: clamp(60px, 10vh, 120px) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
    width: 100%;
    color: var(--light-text);
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

/* Gradient Orbs Animation */
.gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: clamp(200px, 30vw, 400px);
    height: clamp(200px, 30vw, 400px);
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0.1) 50%, transparent 100%);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.orb-2 {
    width: clamp(150px, 25vw, 350px);
    height: clamp(150px, 25vw, 350px);
    background: radial-gradient(circle, rgba(30, 58, 138, 0.4) 0%, rgba(30, 58, 138, 0.1) 50%, transparent 100%);
    top: 60%;
    right: -15%;
    animation-delay: 5s;
    animation-duration: 30s;
}

.orb-3 {
    width: clamp(180px, 28vw, 320px);
    height: clamp(180px, 28vw, 320px);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    bottom: 20%;
    left: 60%;
    animation-delay: 10s;
    animation-duration: 35s;
}

.orb-4 {
    width: clamp(120px, 20vw, 280px);
    height: clamp(120px, 20vw, 280px);
    background: radial-gradient(circle, rgba(37, 99, 235, 0.4) 0%, rgba(37, 99, 235, 0.1) 50%, transparent 100%);
    top: 30%;
    left: 20%;
    animation-delay: 15s;
    animation-duration: 40s;
}

@keyframes orbFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% { 
        transform: translate(30px, -40px) scale(1.1);
        opacity: 0.8;
    }
    50% { 
        transform: translate(-20px, 30px) scale(0.9);
        opacity: 0.4;
    }
    75% { 
        transform: translate(40px, 20px) scale(1.05);
        opacity: 0.7;
    }
}

/* Animated Waves */
.animated-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wave-1 {
    z-index: 2;
}

.wave-2 {
    z-index: 1;
    bottom: 10px;
}

/* Particle Field */
.particle-field {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 3s;
    animation-duration: 25s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 6s;
    animation-duration: 18s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 9s;
    animation-duration: 22s;
}

.particle:nth-child(5) {
    left: 85%;
    animation-delay: 12s;
    animation-duration: 28s;
}

.particle:nth-child(6) {
    left: 95%;
    animation-delay: 15s;
    animation-duration: 24s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Products Container */
.products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
    position: relative;
    z-index: 10;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: clamp(60px, 10vh, 100px);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: clamp(15px, 3vh, 25px);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #c5bfff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

/* Products Grid */
.products-grid {
    display: flex;
    flex-direction: column;
    gap: clamp(60px, 8vh, 120px);
}

/* Product Card */
.product-card {
    width: 100%;
    opacity: 0;
    transform: translateY(50px);
    animation: cardReveal 0.8s ease-out forwards;
}

.product-card[data-aos="fade-up"] {
    animation-delay: 0.2s;
}

.product-card[data-aos-delay="100"] {
    animation-delay: 0.4s;
}

.product-card[data-aos-delay="200"] {
    animation-delay: 0.6s;
}

.product-card[data-aos-delay="300"] {
    animation-delay: 0.8s;
}

@keyframes cardReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 6vw, 80px);
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: clamp(30px, 5vw, 60px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.card-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 50%, 
        rgba(59, 130, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.product-card:hover .card-content {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.product-card:hover .card-content::before {
    opacity: 1;
}

/* Reverse Layout */
.product-card.reverse .card-content {
    grid-template-columns: 1fr 1fr;
}

.product-card.reverse .text-content {
    order: 2;
}

.product-card.reverse .image-content {
    order: 1;
}

/* Text Content */
.text-content {
    display: flex;
    flex-direction: column;
    gap: clamp(15px, 3vw, 25px);
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    font-weight: 600;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.product-badge i {
    font-size: 1em;
}

.product-title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.product-description {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

/* Product Features */
.product-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.85rem, 1.8vw, 1rem);
}

.feature-item i {
    color: var(--light-text);
    font-size: 1.1em;
    width: 20px;
    text-align: center;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
}

.action-btn {
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: clamp(12px, 2.5vw, 16px) clamp(20px, 4vw, 30px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.primary-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 ease;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.4);
}

.primary-btn:hover::before {
    left: 100%;
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: clamp(45px, 10vw, 50px);
    height: clamp(45px, 10vw, 50px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px) scale(1.05);
}

/* Image Content */
.image-content {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
}

.product-image {
    width: 100%;
    height: clamp(250px, 40vw, 400px);
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(30, 58, 138, 0.8) 0%, 
        rgba(59, 130, 246, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.hover-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.hover-content i {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 5px;
}

.hover-content span {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 600;
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

.image-wrapper:hover .hover-content {
    transform: translateY(0);
}

.image-wrapper:hover .product-image {
    transform: scale(1.05);
}

.product-card:hover .image-wrapper {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Before-After Section Styles */
.before-after-section {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--light-text);
}

.section-heading p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    max-width: 700px;
    margin: 0 auto;
    color: var(--light-text);
    opacity: 0.9;
}

.before-after-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 600px), 1fr));
    gap: 30px;
    width: 100%;
}

.comparison-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.comparison-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.before-image img,
.after-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.after-image {
    width: 50%;
    border-right: 2px solid white;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    z-index: 10;
    cursor: ew-resize;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
}

.slider-circle {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.slider-circle i {
    font-size: 12px;
    color: #333;
}

.slider-circle i:first-child {
    margin-right: 4px;
}

.slider-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: white;
    z-index: 1;
}

.slider-labels {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 5;
    pointer-events: none;
}

.before-label,
.after-label {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
    width: fit-content;
}

.learn-more-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(45deg);
    transition: all 0.8s ease;
}

.learn-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(59, 130, 246, 0.3);
}

.learn-more-btn:hover::after {
    left: 100%;
}

/* Process Workflow Section Styles */
.process-workflow-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
}

.process-heading {
    text-align: center;
    margin-bottom: 60px;
}

.process-heading h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--light-text);
}

.process-heading p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    max-width: 700px;
    margin: 0 auto;
    color: var(--light-text);
    opacity: 0.9;
}

/* Phase Navigation */
.phase-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto 40px;
    position: relative;
    padding: 0 20px;
}

.phase-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
    cursor: pointer;
}

.phase-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--light-text);
    border: 2px solid var(--light-text);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    transition: all 0.5s ease;
    position: relative;
}

.phase-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--light-text);
    opacity: 0.7;
    transition: all 0.5s ease;
}

.phase-item.current .phase-circle {
    background-color: var(--accent-color);
    color: var(--light-text);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.phase-item.current .phase-label {
    color: var(--light-text);
    opacity: 1;
    transform: scale(1.05);
}

.phase-item.done .phase-circle {
    background-color: var(--accent-color);
    color: var(--light-text);
    border-color: var(--light-text);
}

.phase-item.done .phase-circle::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.phase-link {
    flex-grow: 1;
    height: 3px;
    background: linear-gradient(to right, var(--light-text) 0%, rgba(255, 255, 255, 0.3) 0%);
    margin: 0 10px;
    position: relative;
    top: -25px;
    z-index: 1;
    transition: all 0.5s ease;
}

/* Phase Content */
.workflow-content-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 500px;
}

.phase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
    transform: translateX(50px);
}

.phase-content.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}

.phase-visual {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 350px;
}

.phase-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s ease;
}

.phase-content.visible .phase-visual img {
    transform: scale(1);
}

.phase-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

.phase-details h3 {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--light-text);
}

.phase-details p {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--light-text);
    opacity: 0.85;
}

.phase-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.phase-highlights li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: var(--light-text);
}

.phase-highlights li i {
    color: var(--light-text);
    margin-right: 10px;
    font-size: 1.1em;
}

.phase-advance-btn, .phase-restart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.2);
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.phase-advance-btn::after, .phase-restart-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(45deg);
    transition: all 0.8s ease;
}

.phase-advance-btn:hover, .phase-restart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
    background-color: var(--secondary-color);
}

.phase-advance-btn:hover::after, .phase-restart-btn:hover::after {
    left: 100%;
}

.phase-advance-btn i, .phase-restart-btn i {
    margin-left: 10px;
}

.phase-restart-btn {
    background-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
}

.phase-restart-btn:hover {
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    background-color: var(--secondary-color);
}

.phase-restart-btn i {
    margin-right: 10px;
    margin-left: 0;
}

/* Company info styles */
.company-info {
    background-color: var(--light-background);
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
}

.company-info h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.company-info p {
    color: var(--text-color);
    margin-bottom: 10px;
}

.company-info ul {
    list-style: none;
    padding-left: 0;
    margin: 10px 0;
}

.company-info ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--text-color);
}

.company-info ul li:before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.ownership-text {
    font-size: 14px;
    color: rgba(30, 58, 138, 0.8);
    margin-top: 10px;
    font-style: italic;
}

/* Video container styles */
.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.play-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

/* Reach Out Section Styles */
.reach-out-section {
    padding: 80px 20px;
    background-color: var(--primary-color);
}

.reach-out-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.reach-out-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
}

/* Message Form Panel */
.message-form-panel {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.message-form-panel h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

.message-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-block label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.input-block input,
.input-block textarea {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    color: var(--text-color);
    background-color: #f9f9f9;
}

.input-block input:focus,
.input-block textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
    background-color: white;
}

.input-block textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox Styling */
.consent-block {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.consent-block input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--primary-color);
}

.consent-block label {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-color);
    opacity: 0.8;
    flex: 1;
}

/* Submit Button */
.send-btn-container {
    margin-top: 10px;
}

.send-message-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.send-message-btn:hover {
    background-color: var(--secondary-color);
}

.send-message-btn i {
    margin-left: 5px;
}

/* Form Feedback */
.form-feedback {
    text-align: center;
    padding: 10px;
    margin-top: 15px;
    border-radius: 8px;
    font-weight: 500;
    display: none;
}

.form-feedback.success-msg {
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(59, 130, 246, 0.3);
    display: block;
}

.form-feedback.error-msg {
    background-color: rgba(255, 71, 87, 0.1);
    color: #FF4757;
    border: 1px solid rgba(255, 71, 87, 0.3);
    display: block;
}

/* Contact Details Panel */
.contact-details-panel {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-details-panel h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-color);
}

.contact-intro-text {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-option {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.option-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(30, 58, 138, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.option-icon i {
    color: var(--primary-color);
    font-size: 18px;
}

.option-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.option-info p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.5;
}

.option-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.option-info a:hover {
    text-decoration: underline;
}

/* Social Media Links */
.social-media-links {
    display: flex;
    gap: 15px;
}

.social-media-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-media-link:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Map Styling */
.location-map-container {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
.site-footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 60px 0 20px;
    font-family: 'Poppins', Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px;
    color: #fff;
}

.footer-tagline {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    align-items: flex-start;
}

.footer-contact-info i {
    color: var(--accent-color);
    margin-top: 3px;
}

.footer-contact-info a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-info a:hover {
    color: #fff;
}

.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
}

.newsletter-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    color: #fff;
}

.newsletter-description {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-input-group {
    display: flex;
    gap: 10px;
}

.newsletter-input-group input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 14px;
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.newsletter-input-group button {
    padding: 12px 20px;
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-input-group button:hover {
    background-color: var(--secondary-color);
}

.newsletter-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-consent input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-legal-links a:hover {
    color: #fff;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .card-content {
        gap: clamp(25px, 5vw, 60px);
        padding: clamp(25px, 4vw, 50px);
    }
    
    .products-grid {
        gap: clamp(50px, 7vh, 100px);
    }
}

@media (max-width: 1100px) {
    .hero-content {
        grid-template-columns: 1fr 1.2fr;
    }
}

@media (max-width: 992px) {
    .phase-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .phase-visual {
        min-height: 300px;
    }
    
    .point-marker {
        width: 45px;
        height: 45px;
    }
    
    .year-header h3 {
        font-size: 1.1rem;
    }
    
    .year-content {
        font-size: 0.9rem;
    }
    
    .timeline-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reach-out-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-logo-section {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-column-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links-section {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-links-column {
        text-align: center;
    }
}

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-text {
        order: 1;
        max-width: 100%;
    }
    
    .hero-text p {
        margin: 0 auto 30px;
        max-width: 95%;
    }
    
    .cta-buttons {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
    
    .model-container {
        order: 0;
        margin-bottom: 20px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .model-viewer-wrapper {
        height: clamp(250px, 45vw, 400px);
    }
    
    .card-content {
        grid-template-columns: 1fr;
        gap: clamp(30px, 6vw, 40px);
        text-align: center;
    }
    
    .product-card.reverse .text-content,
    .product-card.reverse .image-content {
        order: unset;
    }
    
    .text-content {
        align-items: center;
    }
    
    .product-features {
        align-items: center;
    }
    
    .product-actions {
        justify-content: center;
    }
    
    .product-badge {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        padding-top: 90px;
    }
    
    .navbar {
        padding: 10px 20px;
        width: 95%;
    }
    
    nav ul {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px 0;
        gap: 30px;
        z-index: 1050;
        display: none;
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.4s ease;
    }
    
    nav ul.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
        top:150px;
    }
    
    nav ul li a {
        font-size: 22px;
        font-weight: 600;
        padding: 10px 20px;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    nav ul li a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 250px;
    }
    
    .model-container {
        order: 0;
        margin-bottom: 20px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 30px;
    }
    
    .model-viewer-wrapper {
        height: clamp(220px, 40vw, 350px);
    }
    
    .iframe-container {
        top: -45px;
        left: -20px;
        width: calc(100% + 40px);
        height: calc(100% + 90px);
    }
    
    .corner-overlay {
        width: 60px;
        height: 60px;
    }
    
    .edge-overlay.top {
        left: 0px;
        right: 0px;
        height: 50px;
    }
    
    .edge-overlay.bottom {
        left: 0px;
        right: 0px;
        height: 70px;
    }
    
    .edge-overlay.left {
        top: 0px;
        bottom: 0px;
        width: 50px;
    }
    
    .edge-overlay.right {
        top: 0px;
        bottom: 0px;
        width: 50px;
    }
    
    .loader-content {
        padding: 20px 15px;
    }
    
    .loader-spinner {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .spinner-ring {
        border-width: 2px;
    }
    
    .fallback-image-container {
        border-radius: 15px;
    }
    
    .fallback-image {
        border-radius: 15px;
    }
    
    .fallback-overlay {
        border-radius: 15px;
    }
    
    .featured-products-section {
        padding: clamp(40px, 8vh, 80px) 0;
    }
    
    .products-container {
        padding: 0 20px;
    }
    
    .section-header {
        margin-bottom: clamp(40px, 8vh, 60px);
    }
    
    .card-content {
        padding: clamp(20px, 4vw, 30px);
        border-radius: 16px;
    }
    
    .image-wrapper {
        border-radius: 16px;
    }
    
    .product-image {
        height: clamp(200px, 35vw, 280px);
        border-radius: 16px;
    }
    
    .image-overlay {
        border-radius: 16px;
    }
    
    .orb-1, .orb-2, .orb-3, .orb-4 {
        filter: blur(30px);
    }
    
    .timeline-section {
        min-height: auto;
        padding: 30px 15px;
    }
    
    .timeline-title {
        font-size: 2rem;
    }
    
    .timeline-subtitle {
        font-size: 0.9rem;
    }
    
    .slide-content-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .year-card {
        padding: 15px;
    }
    
    .timeline-stats {
        gap: 15px;
    }
    
    .stat-item {
        padding: 15px 10px;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .kitchen-features {
        gap: clamp(15px, 4vw, 25px);
    }
    
    .kitchen-icon {
        font-size: clamp(30px, 6vw, 50px);
    }
    
    .before-after-section {
        padding: 40px 15px;
    }
    
    .comparison-container {
        aspect-ratio: 4/3;
    }
    
    .slider-circle {
        width: 32px;
        height: 32px;
    }
    
    .slider-labels {
        bottom: 10px;
        padding: 0 10px;
    }
    
    .before-label,
    .after-label {
        padding: 4px 8px;
        font-size: 12px;
    }
    
    .process-workflow-section {
        padding: 60px 15px;
    }
    
    .phase-navigation {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px 40px;
    }
    
    .phase-link {
        display: none;
    }
    
    .phase-item {
        margin: 0 10px;
    }
    
    .phase-circle {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .phase-label {
        font-size: 12px;
    }
    
    .phase-visual {
        min-height: 250px;
    }
    
    .phase-details {
        padding: 10px 0;
    }
    
    .reach-out-section {
        padding: 60px 15px;
    }
    
    .input-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .message-form-panel,
    .contact-details-panel {
        padding: 25px 20px;
    }
    
    .location-map-container {
        height: 300px;
    }
    
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
        padding-top: 80px;
    }
    
    .navbar {
        width: 95%;
        padding: 8px 15px;
        top: 10px;
    }
    
    .hero-content {
        gap: 20px;
        padding-top: 0;
    }
    
    .hero-text h1 {
        font-size: clamp(1.4rem, 6vw, 2.2rem);
        line-height: 1.1;
    }
    
    .hero-text p {
        font-size: clamp(0.85rem, 3.5vw, 1rem);
        max-width: 100%;
    }
    
    .model-container {
        order: 0;
        margin-bottom: 20px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 50px;
    }
    
    .model-viewer-wrapper {
        border-radius: 15px;
        height: clamp(200px, 35vw, 280px);
    }
    
    .iframe-container {
        top: -35px;
        left: -15px;
        width: calc(100% + 30px);
        height: calc(100% + 70px);
    }
    
    .custom-model-instructions {
        padding: 6px 12px;
        font-size: 11px;
        width: 90%;
        max-width: 250px;
    }
    
    .corner-overlay {
        width: 40px;
        height: 40px;
    }
    
    .edge-overlay.top, .edge-overlay.bottom {
        height: 30px;
        left: 0px;
        right: 0px;
    }
    
    .edge-overlay.left, .edge-overlay.right {
        width: 35px;
        top: 0px;
        bottom: 0px;
    }
    
    .custom-interaction-instructions {
        font-size: 12px;
        padding: 6px 12px;
        max-width: 85%;
    }
    
    .model-loader {
        border-radius: 15px;
    }
    
    .loader-content {
        padding: 15px 10px;
    }
    
    .loader-spinner {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .loading-dots {
        gap: 4px;
        margin-bottom: 20px;
    }
    
    .loading-dots span {
        width: 6px;
        height: 6px;
    }
    
    .fallback-features {
        gap: clamp(10px, 2vw, 15px);
    }
    
    .fallback-feature {
        min-width: clamp(60px, 12vw, 80px);
    }
    
    .fullscreen-loader .loader-content {
        padding: clamp(20px, 4vw, 40px);
    }
    
    .kitchen-features {
        flex-direction: row;
        justify-content: space-around;
        gap: clamp(10px, 3vw, 20px);
    }
    
    .feature {
        min-width: clamp(60px, 15vw, 80px);
    }
    
    .kitchen-icon {
        font-size: clamp(25px, 5vw, 40px);
    }
    
    .products-grid {
        gap: clamp(40px, 8vh, 60px);
    }
    
    .card-content {
        padding: clamp(15px, 4vw, 25px);
        gap: clamp(20px, 5vw, 30px);
        border-radius: 12px;
    }
    
    .image-wrapper {
        border-radius: 12px;
    }
    
    .product-image {
        height: clamp(180px, 30vw, 220px);
        border-radius: 12px;
    }
    
    .image-overlay {
        border-radius: 12px;
    }
    
    .product-features {
        gap: 8px;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .secondary-btn {
        align-self: center;
    }
    
    .orb-1, .orb-2, .orb-3, .orb-4 {
        filter: blur(20px);
        opacity: 0.4;
    }
    
    .timeline-title {
        font-size: 1.75rem;
    }
    
    .timeline-subtitle {
        font-size: 0.8rem;
    }
    
    .year-indicator {
        font-size: 1rem;
        padding: 6px 15px;
        min-width: 110px;
    }
    
    .nav-button {
        width: 36px;
        height: 36px;
    }
    
    .timeline-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .before-after-section {
        padding: 30px 10px;
    }
    
    .before-after-container {
        gap: 20px;
    }
    
    .comparison-wrapper {
        gap: 10px;
    }
    
    .slider-circle {
        width: 28px;
        height: 28px;
    }
    
    .slider-circle i {
        font-size: 10px;
    }
    
    .before-label,
    .after-label {
        padding: 3px 6px;
        font-size: 10px;
    }
    
    .learn-more-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .process-workflow-section {
        padding: 40px 10px;
    }
    
    .phase-navigation {
        margin-bottom: 30px;
    }
    
    .phase-circle {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .phase-visual {
        min-height: 200px;
    }
    
    .phase-highlights li {
        font-size: 0.9rem;
    }
    
    .phase-advance-btn, .phase-restart-btn {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
    }
    
    .reach-out-section {
        padding: 40px 10px;
    }
    
    .message-form-panel,
    .contact-details-panel {
        padding: 20px 15px;
    }
    
    .send-message-btn {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .location-map-container {
        height: 250px;
    }
    
    .site-footer {
        padding: 30px 0 20px;
    }
    
    .site-footer {
        padding: 30px 0 20px;
    }
    
    .footer-newsletter {
        padding: 20px 15px;
    }
    
    .footer-legal-links {
        gap: 15px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 10px;
        padding-top: 75px;
    }
    
    .logo {
        font-size: 16px;
    }
    
    .hero-text h1 {
        font-size: 1.3rem;
        line-height: 1.1;
    }
    
    .hero-text p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .model-container {
        order: 0;
        margin-bottom: 20px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 60px;
    }
    
    .model-viewer-wrapper {
        height: clamp(180px, 30vw, 250px);
        border-radius: 12px;
    }
    
    .iframe-container {
        top: -40px;
        left: -20px;
        width: calc(100% + 40px);
        height: calc(100% + 80px);
    }
    
    .cta-primary, .cta-secondary {
        padding: 8px 15px;
        font-size: 13px;
        min-width: 100px;
    }
    
    .custom-model-instructions {
        font-size: 10px;
        padding: 4px 8px;
        max-width: 200px;
    }
    
    .corner-overlay {
        width: 50px;
        height: 50px;
    }
    
    .edge-overlay.top, .edge-overlay.bottom {
        height: 40px;
        left: 0px;
        right: 0px;
    }
    
    .edge-overlay.left, .edge-overlay.right {
        width: 45px;
        top: 0px;
        bottom: 0px;
    }
    
    .model-loader {
        border-radius: 12px;
    }
    
    .loader-content {
        padding: 12px 8px;
    }
    
    .loader-spinner {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }
    
    .brand-logo {
        flex-direction: column;
        gap: 5px;
    }
    
    .kitchen-features {
        margin-top: 15px;
    }
    
    .feature {
        min-width: 50px;
    }
    
    .featured-products-section {
        padding: clamp(30px, 6vh, 60px) 0;
    }
    
    .section-header {
        margin-bottom: clamp(30px, 6vh, 40px);
    }
    
    .card-content {
        padding: clamp(12px, 3vw, 20px);
        border-radius: 10px;
    }
    
    .image-wrapper {
        border-radius: 10px;
    }
    
    .product-image {
        height: clamp(160px, 25vw, 200px);
        border-radius: 10px;
    }
    
    .image-overlay {
        border-radius: 10px;
    }
}