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

:root {
    /* Color Scheme - Enhanced Premium Palette */
    --primary-black: #000000;
    --primary-dark: #0f0f0f;
    --secondary-dark: #1a1a1a;
    --charcoal: #2c2c2c;
    --accent-grey: #666666;
    --medium-grey: #999999;
    --light-grey: #f8f8f8;
    --off-white: #fafafa;
    --white: #ffffff;
    --gold: #c9a961;
    --gold-dark: #a8935a;
    --gold-light: #e6d4a0;
    --platinum: #e5e4e2;
    
    /* Typography - Premium Font Stack */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-display: 'Playfair Display', 'Times New Roman', Georgia, serif;
    --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    
    /* Spacing - Premium Layout */
    --container-max-width: 1400px;
    --section-padding: 140px 0;
    --element-spacing: 2.5rem;
    --content-max-width: 800px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    margin-left: 2rem;
    margin-right: 2rem;
}

/* Empty State Styling */
.empty-state {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 4rem 2rem;
}

.empty-content {
    text-align: center;
    max-width: 600px;
}

.empty-content h2 {
    font-family: var(--font-display);
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
}

.empty-content p {
    color: var(--accent-grey);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    margin-left: 0;
    margin-right: 0;
}

.empty-content .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Product Gallery Styling */
.product-gallery {
    margin-top: 4rem;
    text-align: center;
}

.gallery-header {
    margin-bottom: 2rem;
}

.gallery-header h4 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.gallery-header p {
    color: var(--accent-grey);
    font-size: 1.1rem;
    margin-left: 0;
    margin-right: 0;
}

.gallery-image {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.gallery-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-normal);
}

.gallery-img:hover {
    transform: scale(1.02);
}

/* Compact Gallery Styling */
.compact-gallery {
    margin-top: 3rem;
}

.gallery-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-item {
    text-align: center;
}

.gallery-item .gallery-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-normal);
    margin-bottom: 1rem;
}

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

.gallery-caption {
    color: var(--accent-grey);
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

@media (max-width: 768px) {
    .gallery-duo {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Lifestyle Gallery Styling */
.lifestyle-gallery {
    margin-top: 4rem;
    text-align: center;
}

.lifestyle-gallery .gallery-header {
    margin-bottom: 2rem;
}

.lifestyle-gallery .gallery-header h4 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.lifestyle-gallery .gallery-header p {
    color: var(--accent-grey);
    font-size: 1.1rem;
    margin-left: 0;
    margin-right: 0;
}

.lifestyle-gallery .gallery-image {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
}

.lifestyle-gallery .gallery-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-normal);
}

.lifestyle-gallery .gallery-img:hover {
    transform: scale(1.03);
}

/* System Gallery Styling */
.system-gallery {
    margin-top: 4rem;
    text-align: center;
}

.system-gallery .gallery-header {
    margin-bottom: 2rem;
}

.system-gallery .gallery-header h4 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.system-gallery .gallery-header p {
    color: var(--accent-grey);
    font-size: 1.1rem;
    margin-left: 0;
    margin-right: 0;
}

.system-gallery .gallery-image {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.system-gallery .gallery-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-normal);
}

.system-gallery .gallery-img:hover {
    transform: scale(1.02);
}

/* Values Grid Styling */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
}

.value-card {
    background: var(--card-background);
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 8px 32px rgba(218, 165, 32, 0.15), 0 4px 16px rgba(218, 165, 32, 0.1);
    transition: all var(--transition-normal);
    border: 1px solid rgba(218, 165, 32, 0.2);
    text-align: center;
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(218, 165, 32, 0.25), 0 8px 24px rgba(218, 165, 32, 0.15);
    border-color: rgba(218, 165, 32, 0.4);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.1), transparent);
    transition: left 0.5s ease;
}

.value-card:hover::before {
    left: 100%;
}

.value-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent-gold), #b8860b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 16px rgba(218, 165, 32, 0.3);
    position: relative;
    z-index: 2;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(218, 165, 32, 0.4);
}

.value-icon i {
    font-size: 2.2rem;
    color: var(--primary-dark);
}

.value-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.value-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
    max-width: none;
}

/* Testimonials Section */
.testimonials {
    background: var(--section-background);
    padding: 1rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--accent-grey);
}

.testimonial-carousel {
    margin-top: 2rem;
    position: relative;
}

.testimonial-container {
    overflow: hidden;          
    border-radius: 12px;
    background: var(--card-background);
    box-shadow: var(--shadow-medium);
    width: 90%;               
    max-width: 1000px;        
    margin: 0 auto;
    padding: 0;     
}

.testimonial-track {
    display: flex;
    flex-wrap: nowrap;         
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    flex: 0 0 100%;           
    display: block;
    box-sizing: border-box;
}

.testimonial-content {
    padding: 1.5rem 2rem;
    display: block;       
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.testimonial-quote {
    margin-bottom: 1rem;
}

.testimonial-quote i {
    font-size: 1rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    display: block;
}

/* .testimonial-quote p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
    max-width: 800px;        
    margin: 0 auto;
    white-space: normal;   
    word-wrap: break-word; 
    display: block;        
    text-align: center;
} */
 .testimonial-quote p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
    max-width: 100%;         
    white-space: normal;      
    word-wrap: break-word;    
    margin: 0;
    text-align: center;        
}

.testimonial-author h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.testimonial-btn {
    background: var(--card-background);
    border: 2px solid var(--border-light);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    color: var(--text-secondary);
}

.testimonial-btn:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-dark);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-content {
        padding: 1rem 1rem;
    }
    .testimonial-quote p {
        font-size: 1rem;
        max-width: 95%;  /* allow more width on mobile */
    }
    .testimonial-container {
        max-width: 95%;
    }
}


.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.dot.active,
.dot:hover {
    background: var(--accent-gold);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    
    .value-title {
        font-size: 1.4rem;
    }
    
    .value-description {
        font-size: 1rem;
    }
}
    
    .testimonial-content {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-quote p {
        font-size: 1.1rem;
    }
    
    .testimonial-controls {
        gap: 1rem;
    }


h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    font-weight: 400;
}

h2 {
    font-size: clamp(2.2rem, 4.2vw, 3.2rem);
    font-family: var(--font-display);
    letter-spacing: -0.015em;
    font-weight: 400;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    margin-left: 2rem;
    margin-right: 2rem;
    color: var(--accent-grey);
}

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

/* Container and Layout */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 4rem;
}
/* Override Default Margins for Navigation and Special Elements */
.nav-logo h1,
.nav-link,
.modal h1, .modal h2, .modal h3, .modal h4, .modal h5, .modal h6,
.modal p,
.btn,
.form-group label,
.form-group input,
.form-group select,
.form-group textarea,
.product-investment,
.product-heritage,
.virtue-label,
.virtue-value,
.spec-label,
.spec-value,
.highlight-badge {
    margin-left: 0;
    margin-right: 0;
}

/* Text Content Margins */
.text-content,
.hero-description,
.section-description,
.product-description,
.story-description,
.about-tech-description,
.location-description,
.hero-content h1,
.hero-content p,
.page-hero-content h1,
.page-hero-content p,
.artistry-description,
.principle-description,
.product-essence,
.quote-description,
.main-quote,
.quote-author {
    margin-left: 2rem;
    margin-right: 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--accent-grey);
    max-width: 600px;
    margin: 0 auto;
}

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

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

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: auto;
}

.nav-logo h1 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
    margin-left: 0;
    margin-right: 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: var(--transition-normal);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
}

/* Navigation Toggle Removed - Always visible navigation */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.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: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-dark);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
}

.btn-secondary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-dark);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
}

/* Image Shadow Effects */
img {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    transition: var(--transition-normal);
}

img:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6);
    transform: translateY(-2px);
}


.logo-img {
    box-shadow: none !important;
    border-radius: 0 !important;
    transform: none !important;
    transition: none !important;
    height:60px;
    margin-top:3px;
}

.spec-label{
    font-size:25px;
}
/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--off-white), var(--white));
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    border-bottom: 1px solid var(--platinum);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.1));
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    margin-bottom: 2rem;
}

.hero-subtitle {
    display: block;
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--accent-grey);
    margin-bottom: 0.5rem;
}

.hero-main {
    display: block;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.hero-accent {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--accent-grey);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-left: 2rem;
    margin-right: 2rem;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-product {
    position: relative;
    z-index: 2;
}

.hero-product-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    transition: var(--transition-slow);
}

.hero-product-img:hover {
    transform: scale(1.05) rotateY(5deg);
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.3; }
}

/* Page Hero */
.page-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    color: var(--white);
    text-align: center;
}

.page-title {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    
}

/* Features Section */
.features {
    padding: var(--section-padding);
    background: var(--off-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    opacity: 0;
    transition: var(--transition-normal);
}

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

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.feature-title {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--accent-grey);
    line-height: 1.6;
}

/* Showcase Section */
.showcase {
    padding: var(--section-padding);
    background: var(--primary-dark);
    color: var(--white);
}

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

.showcase-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.showcase-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.showcase-features {
    margin-bottom: 2.5rem;
}

.showcase-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--white);
    padding-left: 2rem;
}

.showcase-feature-icon {
    width: 24px;
    height: 24px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    
}

.showcase-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 16px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: var(--transition-slow);
}

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

.showcase-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent);
    border-radius: 50%;
    z-index: -1;
}

/* Technology Section */
.technology {
    padding: var(--section-padding);
    background: var(--primary-dark);
    color: var(--white);
}

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

.tech-visual {
    position: relative;
}

.tech-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    filter: brightness(0.8);
}

.tech-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 1.5rem;
}

.tech-stats {
    display: flex;
    gap: 2rem;
}

.tech-stat {
    text-align: center;
}

.tech-stat-number {
    display: block;
    font-size: 0.5rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.tech-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.tech-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.tech-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.tech-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tech-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.tech-point i {
    color: var(--gold);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.tech-point h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.tech-point p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* CTA Section */
.cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--secondary-dark), var(--primary-dark));
    color: var(--white);
    text-align: center;
}

.cta-title {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* John Lennon Quote Section */
.quote-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--secondary-dark) 100%);
    color: var(--white);
}

.quote-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--content-max-width);
    margin: 0 auto;
}

.quote-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.quote-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: grayscale(20%) sepia(10%);
    transition: var(--transition-normal);
}

.quote-text {
    padding: 2rem 0;
}

.main-quote {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--white);
    letter-spacing: -0.01em;
}

.quote-author {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.quote-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

/* Artisan Collection Styles */
.artisan-collection {
    padding: var(--section-padding);
    background: var(--off-white);
}

/* Flagship Product Showcase */
.product-showcase.flagship {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 8rem;
    padding: 4rem 0;
    border-bottom: 1px solid var(--platinum);
}

.product-visual {
    position: relative;
    text-align: center;
}

.product-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    transition: var(--transition-normal);
}

.product-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
}

.product-narrative {
    padding: 2rem 0;
}

.product-designation {
    margin-bottom: 2rem;
}

.series-name {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.product-name {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    font-weight: 300;
}

.product-essence {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--secondary-dark);
    margin-bottom: 3rem;
    font-weight: 300;
}

.product-virtues {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.virtue-label {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

.virtue-value {
    font-size: 1rem;
    color: var(--charcoal);
    font-weight: 400;
}

.product-investment {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--charcoal);
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Premium Series */
.premium-series {
    margin-bottom: 6rem;
}

.series-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.series-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-weight: 300;
}

.series-description {
    font-size: 1.1rem;
    color: var(--secondary-dark);
    font-weight: 300;
    font-style: italic;
}

.product-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.product-showcase.premier {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
    border: 1px solid var(--platinum);
    transition: var(--transition-normal);
}

.product-showcase.premier:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-showcase.premier .product-image {
    max-width: 300px;
    margin-bottom: 2rem;
}

.product-showcase.premier .product-name {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.product-heritage {
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Intimate Collection */
.intimate-collection {
    padding-top: 4rem;
    border-top: 1px solid var(--platinum);
}

.product-trio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.product-showcase.intimate {
    text-align: center;
    padding: 2rem 1rem;
    transition: var(--transition-normal);
}

.product-showcase.intimate:hover {
    transform: translateY(-3px);
}

.product-showcase.intimate .product-image {
    max-width: 200px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    transition: var(--transition-normal);
}

.product-showcase.intimate:hover .product-image {
    opacity: 1;
}

.product-showcase.intimate .product-name {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.product-showcase.intimate .product-essence {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-showcase.intimate .product-heritage {
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.product-showcase.intimate .product-investment {
    font-size: 1.3rem;
}

.product-actions {
    margin-top: 1.5rem;
    padding-top: 1rem;
}

.product-detail-btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: var(--transition-normal);
}

/* Responsive Design for New Layout */
@media (max-width: 768px) {
    .quote-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .quote-img {
        height: 300px;
    }
    
    .product-showcase.flagship {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .product-duo {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-trio {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-virtues {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Artistry Showcase Styles (Replaces Card-based Features) */
.artistry-showcase {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    margin-top: 4rem;
}

.artistry-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem 0;
}

.artistry-item.reverse {
    direction: rtl;
}

.artistry-item.reverse > * {
    direction: ltr;
}

.artistry-visual {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.artistry-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition-normal);
    filter: brightness(0.9) contrast(1.1);
}

.artistry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(255, 215, 0, 0.1) 100%);
    opacity: 0;
    transition: var(--transition-normal);
}

.artistry-visual:hover .artistry-overlay {
    opacity: 1;
}

.artistry-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--charcoal) 100%);
}

.artistry-narrative {
    padding: 2rem 0;
}

.artistry-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.artistry-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--secondary-dark);
    font-weight: 300;
}

/* Music Legends Inspiration Section */
.legends-inspiration {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--secondary-dark) 100%);
    color: var(--white);
}

.legends-content {
    max-width: 1200px;
    margin: 0 auto;
}

.legend-showcase.main {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.legend-visual {
    position: relative;
    text-align: center;
}

.legend-image {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    filter: grayscale(30%) sepia(15%);
    transition: var(--transition-normal);
}

.legend-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
}

.legend-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
}

.legend-narrative {
    padding: 2rem 0;
}

.legend-quote {
    margin-bottom: 3rem;
}

.legend-text {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--white);
    letter-spacing: -0.01em;
    font-weight: 300;
}

.legend-attribution {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.legend-philosophy {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

.legends-pantheon {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.legend-tribute {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition-normal);
}

.legend-tribute:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
}

.tribute-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.tribute-inspiration {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-weight: 300;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .artistry-item,
    .artistry-item.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        direction: ltr;
    }
    
    .artistry-image {
        height: 300px;
    }
    
    .legend-showcase.main {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .legend-image {
        height: 400px;
    }
    
    .legends-pantheon {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Values Showcase Styles (Replaces Value Cards) */
.values-showcase {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    margin-top: 4rem;
}

.value-principle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem 0;
}

.value-principle.reverse {
    direction: rtl;
}

.value-principle.reverse > * {
    direction: ltr;
}

.principle-visual {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.principle-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition-normal);
    filter: brightness(0.9) contrast(1.1);
}

.principle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(255, 215, 0, 0.1) 100%);
    opacity: 0;
    transition: var(--transition-normal);
}

.principle-visual:hover .principle-overlay {
    opacity: 1;
}

.principle-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--charcoal) 100%);
}

.principle-narrative {
    padding: 2rem 0;
}

.principle-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.principle-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--secondary-dark);
    font-weight: 300;
}

/* Responsive Design for Values */
@media (max-width: 768px) {
    .value-principle,
    .value-principle.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        direction: ltr;
    }
    
    .principle-image {
        height: 250px;
    }
}

/* Products Page Legacy Styles (for backwards compatibility) */
.filters {
    padding: 2rem 0;
    background: var(--off-white);
    border-bottom: 1px solid var(--platinum);
}

.filter-controls {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 500;
    color: var(--primary-dark);
    font-size: 0.9rem;
}

.filter-select {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    background: var(--white);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    min-width: 150px;
}

.products {
    padding: var(--section-padding);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-normal);
    position: relative;
}

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

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

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

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

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.product-description {
    color: var(--accent-grey);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.product-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--platinum);
    color: var(--charcoal);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1rem;
}

.product-cta {
    width: 100%;
}

/* Quick View Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background: var(--white);
    border-radius: 16px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--accent-grey);
    z-index: 10;
    background: var(--white);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-light);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.modal-image img {
    width: 100%;
    border-radius: 12px;
}

.modal-info {
    display: flex;
    flex-direction: column;
}

.modal-features {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.modal-specs {
    margin: 1.5rem 0;
}

.modal-specs h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.modal-specs ul {
    list-style: none;
    padding: 0;
}

.modal-specs li {
    padding: 0.25rem 0;
    color: var(--accent-grey);
    font-size: 0.9rem;
}

.modal-price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    margin: 1rem 0;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

/* Comparison Table */
.comparison {
    padding: var(--section-padding);
    background: var(--light-grey);
}

.comparison-table {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.comparison-table table {
    width: 100%;
    background: var(--white);
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.comparison-table th {
    background: var(--primary-dark);
    color: var(--white);
    font-weight: 600;
}

.comparison-table td {
    color: var(--primary-dark);
}

.text-gold {
    color: var(--gold);
}

.text-gray {
    color: var(--accent-grey);
}

/* Specifications Page */
.specs-nav {
    padding: 2rem 0;
    background: var(--light-grey);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.specs-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-button {
    padding: 0.75rem 1.5rem;
    border: none;
    background: var(--white);
    color: var(--primary-dark);
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.tab-button:hover,
.tab-button.active {
    background: var(--gold);
    color: var(--white);
}

.specifications {
    padding: var(--section-padding);
}

.spec-content {
    display: none;
}

.spec-content.active {
    display: block;
}

.spec-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.spec-image img {
    width: 100%;
    border-radius: 16px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.spec-title {
    margin-bottom: 0.5rem;
}

.spec-price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1rem;
}

.spec-description {
    color: var(--accent-grey);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.spec-highlights {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.highlight-badge {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.spec-details {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.spec-section h3 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--light-grey);
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.spec-label {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 500;
    color: var(--primary-dark);
}

.spec-value {
    font-weight: 600;
    color: var(--accent-grey);
}

.download-specs {
    padding: 3rem 0;
    background: var(--secondary-dark);
    color: var(--white);
    text-align: center;
}

.download-specs .section-title {
    color: var(--white);
}

.download-specs .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* About Page */
.mission {
    padding: var(--section-padding);
}

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


 .mission-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: justify;   
    text-justify: inter-word; 
}


.mission-img {
    width: 100%;
    height: 100%; 
    border-radius: 16px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
    object-fit: cover;  
    display: block;     
}

.values {
    padding: var(--section-padding);
    background: var(--light-grey);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.value-title {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.value-description {
    color: var(--accent-grey);
    line-height: 1.6;
}

.story {
    padding: var(--section-padding);
}

 .story-content {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 2rem;
    align-items: center;
}
.story-image {
    display: flex;            
    justify-content: center;  
    align-items: center;      
}
 
.story-img {
    width: 100%;              
    height: auto;             
    border-radius: 16px;
    object-fit: cover;        
}

.story-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: justify;   
    text-justify: inter-word;
}

.story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-left: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--accent-grey);
}

.about-tech {
    padding: var(--section-padding);
    background: var(--light-grey);
}

.about-tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-tech-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* .tech-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tech-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    color: var(--primary-dark);
    padding-left: 2rem;
} */



 .tech-highlights {
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: repeat(4, 1fr); 
    gap: 1rem; 
    width: 100%;
    max-width: 100%; 
    margin: 0 auto; 
}

.tech-highlight {
    display: flex;
    flex-direction: column; 
    text-align: center;
    align-items: center;
   color: var(--primary-dark);
    font-weight: 500;
} 

.tech-highlight i {
    font-size: 1.125rem; 
    margin-bottom: 0.75rem;
color: var(--gold);}

.tech-highlight span {
    font-size: 1rem;
    max-width:90%;
}



/* .tech-highlight i {
    color: var(--gold);
    font-size: 1.125rem;
} */

.about-tech-image {
    width: 100%;
    height: 100%;
}

.about-tech-img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;  
    display: block;    
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

.team {
    /* padding: var(--section-padding); */
    padding: 2rem 0;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.commitment-item {
    text-align: center;
    padding: 2rem;
}

.commitment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.commitment-item h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.commitment-item p {
    color: var(--accent-grey);
    line-height: 1.6;
}

/* Contact Page */
.contact-methods {
    padding: 3rem 0;
    background: var(--light-grey);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.contact-card h3 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.contact-card > p {
    color: var(--accent-grey);
    margin-bottom: 1.5rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
    font-size: 0.9rem;
}

.contact-details strong {
    color: var(--gold);
}

.contact-form-section {
    padding: var(--section-padding);
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.link-gold {
    color: var(--gold);
    text-decoration: underline;
}

.error-message {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: none;
}

.error-message.show {
    display: block;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #e74c3c;
}

.form-success {
    display: none;
    text-align: center;
    padding: 3rem;
    background: var(--light-grey);
    border-radius: 16px;
    margin-top: 2rem;
}

.form-success.show {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.form-success h3 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--accent-grey);
}

/* FAQ */
.faq {
    padding: var(--section-padding);
    background: var(--light-grey);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.faq-question:hover {
    background: var(--light-grey);
}

.faq-question h3 {
    margin: 0;
    color: var(--primary-dark);
    font-size: 1.125rem;
}

.faq-question i {
    color: var(--gold);
    transition: var(--transition-normal);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: var(--accent-grey);
    line-height: 1.6;
}

/* Location */
.location-map {
  position: relative;
  width: 100%;
  min-height: 300px;      /* ensures space on all screens */
}

.location-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


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

.location-description {
    font-size: 1.125rem;
    color: var(--accent-grey);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    
}

.location-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start; 
}

.location-detail i {
  color: var(--gold);
  font-size: 1.25rem;
  margin-top: 0.2rem;   
  line-height: 1;       
}

.location-detail h4 {
  margin: 0 0 0.25rem 0; 
  font-size: 1rem;
  font-weight: 600;
  
}

.location-detail p {
    margin: 0;
    color: var(--accent-grey);
    font-size: 0.9rem;
    line-height: 1.5;
} 

.location-map {
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--light-grey);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--accent-grey);
    border: 2px dashed rgba(0, 0, 0, 0.1);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.map-placeholder p {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.map-placeholder span {
    font-size: 0.9rem;
}

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

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

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
    
    margin-top: 1rem; 
    padding-left: 1.5rem;
} 

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

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

.footer-column h4 {
    color: var(--white);
    margin-bottom: 1rem;
    padding-left: 0;
    font-size: 1.125rem;
}

.footer-column ul {
    list-style: none;
    padding-left: 2rem;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-normal);
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .showcase-content,
    .tech-grid,
    .mission-content,
    .story-content,
    .about-tech-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .spec-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
    }
}
/* for working navbar responsiveness */
@media (max-width: 768px) {
    .navbar {
        height: auto;
        padding: 1rem 0;
    }
    
    .nav-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        height: auto;
    }
    
    /* .nav-logo {
        order: 1;
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    } */
    
    .nav-menu {
        order: 2;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
        white-space: nowrap;
    }
    
    .hero {
        margin-top: 80px;
        padding: 2rem 0;
        min-height: auto;
    }
    
    .page-hero {
        padding-top: calc( var(--navbar-height, 80px) + 60px );
    }
    
    .section-padding {
        --section-padding: 60px 0;
    }
    
    .hero-cta,
    .cta-buttons,
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .filter-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .specs-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tab-button {
        width: 100%;
    }
    
    .comparison-table {
        font-size: 0.8rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem;
    }
    
    .story-stats {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    img .tech-image{
        height: auto;
        width:200px;
        
    }
}

/* for working navbar responsiveness */
.tech-image{
    width:50%; 
    height:130px; 
    margin:10px 0

}

@media (max-width: 480px) {
    /* Push entire page down below fixed navbar */
    body {
        padding-top: 140px; /* match or exceed mobile navbar height */
    }

    .container {
        padding: 0 1rem;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
        gap: 0.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .nav-menu {
        gap: 0.25rem;
        flex-direction: row; 
        margin-top: 10px;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.3rem 0.6rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .values-grid,
    .commitment-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
        gap: 1rem;
    }
    
    .spec-grid {
        grid-template-columns: 1fr;
    }
    
    .spec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .hero {
        padding-top: 0; /* remove manual padding since body handles it */
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }

    .hero-content {
        margin-bottom: 20px;
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .hero-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-product-img {
        width: 100%;
        height: auto;
    }

    .page-hero {
        padding: 40px 0 40px; /* only bottom spacing needed now */
        text-align: center;
        background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
        color: var(--white);
    }

    .page-hero-content {
        margin: 0 auto;
        max-width: 90%;
        display: block; 
    }

    .page-title {
        font-size: 1.5rem;
        line-height: 1.2;
        color: var(--white);
        display: block; 
        margin-bottom: 10px;
    }

    .page-subtitle {
        font-size: 0.9rem; 
        line-height: 1.3;
        color: var(--white); 
        padding: 0 10px;
        margin: 0 auto;
    }

    .location-map {
    min-height: 250px; 
    margin-bottom: 30px;  /* smaller height on mobile */
  }
     
    .location-map iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    .artisan-collection {
        padding: 2rem 1rem;
}

.legends-inspiration {
        padding-left: 1rem;   
        padding-right: 1rem;  
    }

 .footer-links {
        /* grid-template-columns: 1fr;  */
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}


/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.hidden { display: none; }
.visible { display: block; }

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Enhanced Mobile Text Margins */
@media (max-width: 768px) {
    .container {
        padding: 0 2rem;
    }
    
    .text-content,
    .hero-description,
    .section-description,
    .product-description,
    .story-description,
    .about-tech-description,
    .location-description,
    .hero-content h1,
    .hero-content p,
    .page-hero-content h1,
    .page-hero-content p,
    .artistry-description,
    .principle-description,
    .product-essence,
    .quote-description,
    .main-quote,
    .quote-author,
    .hero-cta,
    p,
    h1, h2, h3, h4, h5, h6 {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .text-content,
    .hero-description,
    .section-description,
    .product-description,
    .story-description,
    .about-tech-description,
    .location-description,
    .hero-content h1,
    .hero-content p,
    .page-hero-content h1,
    .page-hero-content p,
    .artistry-description,
    .principle-description,
    .product-essence,
    .quote-description,
    .main-quote,
    .quote-author,
    .hero-cta,
    p,
    h1, h2, h3, h4, h5, h6 {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .cta,
    .hero {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}

/* FORCE MOBILE NAVBAR FIX */
@media (max-width: 480px) {
  .nav-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 0 1rem !important;
    gap: 0.5rem !important;
  }
  .nav-menu {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    margin-top: 10px !important;
    gap: 0.25rem !important;
  }
}