/* ============================================
   ECOG Bio Site - AI-Inspired Futuristic Design
   Tata-Style Professional UX
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0a0a0a;
    --secondary: #141414;
    --accent: #00d4ff;
    --accent-rgb: 0, 212, 255;
    --accent-glow: rgba(0, 212, 255, 0.3);
    --gold: #ffd700;
    --gold-dim: #b8941e;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --text-dim: #666666;
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, #0066ff 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(var(--accent-rgb), 0.3);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

/* Light Mode */
[data-theme="light"] {
    --primary: #ffffff;
    --secondary: #f0f0f0;
    --text-white: #0a0a0a;
    --text-gray: #444444;
    --text-dim: #777777;
    --border-subtle: rgba(0, 0, 0, 0.1);
    --gold: #b8941e;
}

/* Dark Mode - explicit override */
[data-theme="dark"] {
    --primary: #0a0a0a;
    --secondary: #141414;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --text-dim: #666666;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --gold: #ffd700;
}

/* Color Themes */
[data-color="cyan"] {
    --accent: #00d4ff;
    --accent-rgb: 0, 212, 255;
    --accent-glow: rgba(0, 212, 255, 0.3);
    --gradient-accent: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
}

[data-color="gold"] {
    --accent: #ffd700;
    --accent-rgb: 255, 215, 0;
    --accent-glow: rgba(255, 215, 0, 0.3);
    --gradient-accent: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
}

[data-color="purple"] {
    --accent: #a855f7;
    --accent-rgb: 168, 85, 247;
    --accent-glow: rgba(168, 85, 247, 0.3);
    --gradient-accent: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
}

[data-color="green"] {
    --accent: #22c55e;
    --accent-rgb: 34, 197, 94;
    --accent-glow: rgba(34, 197, 94, 0.3);
    --gradient-accent: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

[data-color="red"] {
    --accent: #ef4444;
    --accent-rgb: 239, 68, 68;
    --accent-glow: rgba(239, 68, 68, 0.3);
    --gradient-accent: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

[data-color="orange"] {
    --accent: #f97316;
    --accent-rgb: 249, 115, 22;
    --accent-glow: rgba(249, 115, 22, 0.3);
    --gradient-accent: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--primary);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
    transition: background 0.3s ease, color 0.3s ease;
}

::selection {
    background: var(--accent);
    color: var(--primary);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

/* ============================================
   SETTINGS PANEL
   ============================================ */

.settings-panel {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1001;
}

.settings-buttons {
    display: flex;
    gap: 10px;
}

.settings-toggle {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border: 1px solid var(--border-subtle);
    color: var(--text-gray);
    font-size: 1.1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.settings-toggle:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.settings-toggle.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.settings-dropdown,
.translate-dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    width: 280px;
    background: var(--secondary);
    border: 1px solid var(--border-subtle);
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
}

.settings-dropdown.active,
.translate-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.translate-dropdown {
    width: 250px;
}

.translate-hint {
    font-size: 0.75em;
    color: var(--text-dim);
    margin-top: 12px;
    text-align: center;
}

.settings-section {
    margin-bottom: 25px;
}

.settings-section:last-child {
    margin-bottom: 0;
}

.settings-label {
    display: block;
    font-size: 0.8em;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.theme-toggle {
    display: flex;
    gap: 10px;
}

.theme-btn {
    flex: 1;
    padding: 12px;
    background: var(--primary);
    border: 1px solid var(--border-subtle);
    color: var(--text-gray);
    font-size: 1em;
    cursor: pointer;
    transition: var(--transition);
}

.theme-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.theme-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.color-options {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.color-btn {
    width: 100%;
    aspect-ratio: 1;
    background: var(--btn-color);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.color-btn:hover {
    transform: scale(1.1);
}

.color-btn.active {
    border-color: var(--text-white);
    box-shadow: 0 0 15px var(--btn-color);
}

/* Google Translate Styling */
#google_translate_element {
    margin-top: 10px;
}

.goog-te-gadget {
    font-family: 'Inter', sans-serif !important;
}

.goog-te-gadget .goog-te-combo {
    width: 100%;
    padding: 12px 15px;
    background: var(--primary);
    border: 1px solid var(--border-subtle);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.goog-te-gadget .goog-te-combo:hover,
.goog-te-gadget .goog-te-combo:focus {
    border-color: var(--accent);
    outline: none;
}

/* Hide Google Translate branding text only */
.goog-te-gadget > span {
    display: none !important;
}

.goog-logo-link {
    display: none !important;
}

/* Fix Google Translate top bar that pushes content */
body {
    top: 0 !important;
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

iframe.goog-te-menu-frame {
    box-shadow: 0 10px 40px rgba(0,0,0,0.3) !important;
}

/* ============================================
   HERO SECTION - Immersive
   ============================================ */

.hero-immersive {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary);
}

.hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 80px;
}

.hero-left {
    animation: fadeInUp 1s ease;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: var(--border-subtle);
    border: 1px solid var(--border-subtle);
    margin-bottom: 30px;
    font-size: 0.85em;
    color: var(--text-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 6em;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
    letter-spacing: -3px;
}

.name-line {
    display: block;
}

.name-accent {
    color: var(--accent);
    text-shadow: 0 0 60px var(--accent-glow);
}

.hero-credentials {
    font-size: 1.1em;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero-tagline {
    font-size: 1.3em;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    padding: 30px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3em;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
}

.stat-label {
    font-size: 0.85em;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--border-subtle);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 35px;
    background: var(--gradient-accent);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px var(--accent-glow);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(0, 212, 255, 0.1);
}

.social-link[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--text-white);
    padding: 8px 15px;
    font-size: 0.75em;
    white-space: nowrap;
    border: 1px solid var(--border-subtle);
}

/* Hero Right - Profile Frame */
.hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInRight 1s ease 0.3s both;
}

.profile-frame-ai {
    position: relative;
    width: 400px;
    height: 500px;
    background: var(--secondary);
    overflow: hidden;
}

.frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent);
    z-index: 10;
}

.frame-tl { top: 15px; left: 15px; border-right: none; border-bottom: none; }
.frame-tr { top: 15px; right: 15px; border-left: none; border-bottom: none; }
.frame-bl { bottom: 15px; left: 15px; border-right: none; border-top: none; }
.frame-br { bottom: 15px; right: 15px; border-left: none; border-top: none; }

.frame-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.5;
}

.profile-frame-ai img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    position: relative;
    z-index: 5;
}

.frame-scan {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    box-shadow: 0 0 20px var(--accent);
    animation: scan 3s linear infinite;
    z-index: 20;
}

@keyframes scan {
    0% { top: 0; opacity: 1; }
    50% { opacity: 0.5; }
    100% { top: 100%; opacity: 1; }
}

.profile-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding: 12px 25px;
    background: var(--secondary);
    border: 1px solid var(--border-accent);
    font-size: 0.9em;
    color: var(--accent);
}

.badge-icon {
    color: var(--gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--text-dim);
    font-size: 0.8em;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 60px; }
    50% { opacity: 0.5; height: 40px; }
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    padding: 150px 0;
    background: var(--primary);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 80px;
}

.about-label {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.label-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9em;
    color: var(--accent);
    font-weight: 500;
}

.label-text {
    font-size: 0.85em;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5em;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text {
    font-size: 1.15em;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 50px;
}

.about-text p {
    margin-bottom: 25px;
}

.about-text strong {
    color: var(--text-white);
}

.about-highlight {
    display: flex;
    gap: 25px;
    padding: 40px;
    background: var(--secondary);
    border-left: 3px solid var(--accent);
}

.highlight-icon {
    font-size: 2em;
    color: var(--accent);
    opacity: 0.5;
}

.about-highlight blockquote {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4em;
    font-style: italic;
    color: var(--text-white);
    line-height: 1.6;
}

/* ============================================
   JOURNEY SECTION - Timeline
   ============================================ */

.journey-section {
    padding: 150px 0;
    background: var(--secondary);
}

.journey-header {
    margin-bottom: 80px;
}

.journey-timeline {
    position: relative;
    padding-left: 100px;
}

.timeline-line {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--accent), var(--border-subtle));
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 50px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.6s ease forwards;
}

.timeline-item:nth-child(2) { animation-delay: 0.1s; }
.timeline-item:nth-child(3) { animation-delay: 0.2s; }
.timeline-item:nth-child(4) { animation-delay: 0.3s; }
.timeline-item:nth-child(5) { animation-delay: 0.4s; }

@keyframes fadeInLeft {
    to { opacity: 1; transform: translateX(0); }
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.marker-year {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--accent);
}

.marker-dot {
    width: 15px;
    height: 15px;
    background: var(--primary);
    border: 2px solid var(--accent);
    position: absolute;
    left: -60px;
    top: 5px;
}

.marker-dot.active {
    background: var(--accent);
    box-shadow: 0 0 20px var(--accent);
}

.timeline-content {
    padding: 30px 40px;
    background: var(--primary);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: var(--border-accent);
    transform: translateX(10px);
}

.timeline-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.timeline-stat {
    display: flex;
    align-items: baseline;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

.stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2em;
    font-weight: 700;
    color: var(--gold);
}

.stat-desc {
    font-size: 0.85em;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   VALUES SECTION - Bento Grid
   ============================================ */

.values-section {
    padding: 150px 0;
    background: var(--primary);
}

.values-header {
    margin-bottom: 80px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 25px;
}

.bento-item {
    padding: 45px;
    background: var(--secondary);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bento-item:hover {
    border-color: var(--border-accent);
    transform: translateY(-5px);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-wide {
    grid-column: span 2;
}

.bento-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    margin-bottom: 25px;
    font-size: 1.4em;
    color: var(--primary);
}

.bento-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 15px;
}

.bento-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

.bento-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.3;
}

/* ============================================
   STORES SECTION
   ============================================ */

.stores-section {
    padding: 150px 0;
    background: var(--secondary);
}

.stores-header {
    margin-bottom: 80px;
}

.section-subtitle {
    font-size: 1.1em;
    color: var(--text-gray);
    margin-top: 20px;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.store-card {
    padding: 45px 35px;
    background: var(--primary);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.store-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.store-card:hover::before {
    transform: scaleX(1);
}

.store-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-10px);
}

.card-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85em;
    color: var(--text-dim);
    margin-bottom: 30px;
}

.card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    border: 1px solid var(--border-subtle);
    margin-bottom: 30px;
    font-size: 1.6em;
    color: var(--accent);
    transition: var(--transition);
}

.store-card:hover .card-icon {
    background: var(--gradient-accent);
    border-color: transparent;
    color: var(--primary);
}

.store-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 15px;
}

.store-card p {
    color: var(--text-gray);
    font-size: 0.95em;
    line-height: 1.7;
    margin-bottom: 30px;
}

.card-arrow {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
    color: var(--text-dim);
    transition: var(--transition);
}

.store-card:hover .card-arrow {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

/* ============================================
   COMPANIES SECTION
   ============================================ */

.companies-section {
    padding: 150px 0;
    background: var(--primary);
}

.companies-header {
    margin-bottom: 80px;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.company-card {
    display: flex;
    gap: 35px;
    padding: 50px;
    background: var(--secondary);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.company-card:hover {
    border-color: var(--border-accent);
}

.company-logo {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4em;
    font-weight: 700;
    color: var(--primary);
}

.company-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 15px;
}

.company-info p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.company-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 500;
    transition: var(--transition);
}

.company-link:hover {
    gap: 15px;
}

/* ============================================
   LOCATIONS SECTION
   ============================================ */

.locations-section {
    padding: 150px 0;
    background: var(--secondary);
}

.locations-header {
    margin-bottom: 80px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.location-card {
    padding: 50px 40px;
    background: var(--primary);
    border: 1px solid var(--border-subtle);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.location-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-10px);
}

.location-primary {
    border-color: var(--accent);
}

.location-type {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--accent);
    color: var(--primary);
    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    border: 1px solid var(--border-subtle);
    margin: 20px auto 25px;
    font-size: 1.5em;
    color: var(--accent);
}

.location-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 10px;
}

.location-card p {
    color: var(--text-gray);
    margin-bottom: 25px;
}

.location-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9em;
    transition: var(--transition);
}

.location-phone:hover {
    color: var(--accent);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 150px 0;
    background: var(--primary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.contact-info p {
    color: var(--text-gray);
    font-size: 1.1em;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 1.05em;
    transition: var(--transition);
}

.contact-item i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    border: 1px solid var(--border-subtle);
    color: var(--accent);
}

.contact-item:hover {
    color: var(--accent);
}

.contact-form-wrapper {
    padding: 60px;
    background: var(--secondary);
    border: 1px solid var(--border-subtle);
}

.contact-form {
    position: relative;
}

.form-progress {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.progress-bar {
    flex: 1;
    height: 3px;
    background: var(--border-subtle);
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--gradient-accent);
    transition: width 0.5s ease;
}

.progress-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--accent);
    min-width: 50px;
}

.form-group {
    position: relative;
    margin-bottom: 40px;
}

.form-group input {
    width: 100%;
    padding: 20px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 1.1em;
    font-family: 'Inter', sans-serif;
    color: var(--text-white);
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
}

.form-group label {
    position: absolute;
    left: 0;
    top: 20px;
    color: var(--text-dim);
    font-size: 1em;
    pointer-events: none;
    transition: var(--transition);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
    top: -10px;
    font-size: 0.8em;
    color: var(--accent);
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: var(--transition);
}

.form-group input:focus ~ .input-line {
    width: 100%;
}

.submit-btn {
    width: 100%;
    padding: 20px 30px;
    background: var(--border-subtle);
    border: 1px solid var(--border-subtle);
    color: var(--text-dim);
    font-size: 1em;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.submit-btn:not(:disabled) {
    background: var(--gradient-accent);
    border-color: transparent;
    color: var(--primary);
    cursor: pointer;
}

.submit-btn:not(:disabled):hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px var(--accent-glow);
}

.btn-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.2);
    font-size: 1.3em;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 80px 0;
    background: var(--secondary);
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 60px;
    filter: brightness(1.2);
}

.footer-tagline {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.footer-divider {
    width: 60px;
    height: 1px;
    background: var(--border-subtle);
    margin: 0 auto 30px;
}

.footer-copyright {
    font-size: 0.85em;
    color: var(--text-dim);
    margin-bottom: 15px;
}

.footer-credit {
    font-size: 0.8em;
    color: var(--text-dim);
}

.footer-credit a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.footer-credit a:hover {
    color: var(--gold);
}

/* ============================================
   TTS CONTROL
   ============================================ */

.tts-control {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border: 1px solid var(--border-subtle);
    color: var(--text-gray);
    font-size: 1.2em;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    overflow: hidden;
}

.tts-control:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.tts-control.active {
    background: var(--gradient-accent);
    border-color: transparent;
    color: var(--primary);
}

.tts-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--accent);
    opacity: 0;
    transform: scale(0);
    transition: 0.5s;
}

.tts-control.active .tts-ripple {
    animation: ripple 1.5s infinite;
}

@keyframes ripple {
    0% { transform: scale(0); opacity: 0.5; }
    100% { transform: scale(2); opacity: 0; }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ============================================
   COLORFUL LINEAL ICONS
   ============================================ */

/* Settings icons */
.settings-toggle i {
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.settings-toggle:hover i,
.settings-toggle.active i {
    background: linear-gradient(135deg, #0a0a0a, #333333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Theme buttons icons */
.theme-btn[data-theme="dark"] i {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.theme-btn[data-theme="light"] i {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.theme-btn.active i {
    background: linear-gradient(135deg, #0a0a0a, #333333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* TTS Control icon */
.tts-control i {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tts-control:hover i {
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tts-control.active i {
    background: linear-gradient(135deg, #0a0a0a, #333333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Social links icons - each with unique color */
.social-link:nth-child(1) i {
    background: linear-gradient(135deg, #0077b5, #00a0dc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-link:nth-child(2) i {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-link:nth-child(3) i {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-link:hover i {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero badge icon */
.badge-icon i {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About highlight icon */
.highlight-icon i {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Bento/Value icons - each with unique color */
.bento-item:nth-child(1) .bento-icon i {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bento-item:nth-child(2) .bento-icon i {
    background: linear-gradient(135deg, #ec4899, #db2777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bento-item:nth-child(3) .bento-icon i {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bento-item:nth-child(4) .bento-icon i {
    background: linear-gradient(135deg, #f97316, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Store card icons - each with unique color */
.store-card:nth-child(1) .card-icon i {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.store-card:nth-child(2) .card-icon i {
    background: linear-gradient(135deg, #f97316, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.store-card:nth-child(3) .card-icon i {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.store-card:nth-child(4) .card-icon i {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.store-card:hover .card-icon i {
    background: linear-gradient(135deg, #0a0a0a, #333333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card arrow icon */
.card-arrow i {
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.store-card:hover .card-arrow i {
    background: linear-gradient(135deg, #0a0a0a, #333333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Location icons */
.location-icon i {
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.location-primary .location-icon i {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.location-phone i {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Contact icons */
.contact-item:nth-child(1) i {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-item:nth-child(2) i {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Submit button WhatsApp icon */
.btn-icon i {
    background: linear-gradient(135deg, #25d366, #128c7e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Company link icon */
.company-link i {
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Primary button arrow */
.btn-primary i {
    color: var(--primary);
    background: none;
    -webkit-text-fill-color: currentColor;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .section-container { max-width: 1500px; }
    .hero-name { font-size: 7em; }
    .section-title { font-size: 4em; }
}

/* Standard Desktop (1200px - 1439px) */
@media (max-width: 1439px) {
    .section-container { padding: 0 60px; }
    .hero-content { padding: 100px 60px; gap: 60px; }
    .hero-name { font-size: 5em; }
    .profile-frame-ai { width: 350px; height: 450px; }
}

/* Small Desktop (1024px - 1199px) */
@media (max-width: 1199px) {
    .section-container { padding: 0 50px; }
    .hero-content { padding: 100px 50px; }
    .hero-name { font-size: 4.5em; }
    .profile-frame-ai { width: 320px; height: 400px; }
    .about-grid { grid-template-columns: 150px 1fr; gap: 50px; }
    .section-title { font-size: 3em; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-large { grid-column: span 2; grid-row: span 1; }
    .stores-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet Landscape (768px - 1023px) */
@media (max-width: 1023px) {
    .settings-panel { top: 20px; right: 20px; }
    .settings-toggle { width: 45px; height: 45px; }
    .settings-dropdown { width: 260px; padding: 20px; }
    
    .section-container { padding: 0 40px; }
    .hero-content { 
        grid-template-columns: 1fr; 
        padding: 120px 40px 80px;
        text-align: center;
    }
    .hero-left { order: 2; }
    .hero-right { order: 1; margin-bottom: 50px; }
    .hero-name { font-size: 4em; }
    .hero-stats { justify-content: center; flex-wrap: wrap; }
    .hero-actions { justify-content: center; flex-wrap: wrap; }
    .profile-frame-ai { width: 280px; height: 350px; margin: 0 auto; }
    .scroll-indicator { display: none; }
    
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-label { flex-direction: row; gap: 20px; }
    .section-title { font-size: 2.8em; }
    
    .journey-timeline { padding-left: 60px; }
    .timeline-line { left: 20px; }
    .timeline-item { grid-template-columns: 1fr; gap: 20px; }
    .marker-dot { left: -40px; }
    
    .bento-grid { grid-template-columns: 1fr; }
    .bento-large, .bento-wide { grid-column: span 1; }
    
    .stores-grid { grid-template-columns: repeat(2, 1fr); }
    .companies-grid { grid-template-columns: 1fr; }
    .locations-grid { grid-template-columns: 1fr; }
    
    .contact-wrapper { grid-template-columns: 1fr; gap: 60px; }
    .contact-info { text-align: center; }
    .contact-details { align-items: center; }
    
    .about-section, .journey-section, .values-section,
    .stores-section, .companies-section, .locations-section,
    .contact-section { padding: 100px 0; }
}

/* Tablet Portrait (600px - 767px) */
@media (max-width: 767px) {
    .section-container { padding: 0 30px; }
    .hero-content { padding: 100px 30px 60px; }
    .hero-name { font-size: 3em; letter-spacing: -1px; }
    .hero-tagline { font-size: 1.1em; }
    .hero-stats { gap: 25px; }
    .stat-number { font-size: 2.2em; }
    .stat-divider { height: 40px; }
    .profile-frame-ai { width: 240px; height: 300px; }
    
    .section-title { font-size: 2.4em; }
    .about-highlight { flex-direction: column; padding: 30px; }
    .about-highlight blockquote { font-size: 1.2em; }
    
    .timeline-content { padding: 25px 30px; }
    .stat-value { font-size: 1.6em; }
    
    .bento-item { padding: 35px; }
    .stores-grid { grid-template-columns: 1fr; }
    .store-card { padding: 35px 30px; }
    
    .company-card { flex-direction: column; padding: 40px 30px; }
    .location-card { padding: 40px 30px; }
    
    .contact-form-wrapper { padding: 40px 30px; }
    
    .about-section, .journey-section, .values-section,
    .stores-section, .companies-section, .locations-section,
    .contact-section { padding: 80px 0; }
}

/* Mobile (480px - 599px) */
@media (max-width: 599px) {
    .settings-panel { top: 15px; right: 15px; }
    .settings-toggle { width: 42px; height: 42px; font-size: 1em; }
    .settings-dropdown { width: 240px; padding: 18px; top: 52px; }
    .color-options { grid-template-columns: repeat(6, 1fr); gap: 6px; }
    
    .section-container { padding: 0 20px; }
    .hero-content { padding: 80px 20px 50px; }
    .hero-tag { padding: 6px 15px; font-size: 0.75em; }
    .hero-name { font-size: 2.5em; }
    .hero-credentials { font-size: 0.95em; }
    .hero-tagline { font-size: 1em; margin-bottom: 35px; }
    .hero-stats { flex-direction: column; gap: 20px; padding: 25px 0; }
    .stat-divider { width: 60px; height: 1px; }
    .stat-number { font-size: 2em; }
    .btn-primary { width: 100%; justify-content: center; padding: 16px 25px; }
    .social-links { width: 100%; justify-content: center; }
    .profile-frame-ai { width: 200px; height: 260px; }
    .frame-corner { width: 20px; height: 20px; }
    
    .section-title { font-size: 2em; }
    .about-text { font-size: 1em; }
    
    .journey-timeline { padding-left: 40px; }
    .timeline-line { left: 10px; }
    .marker-dot { left: -30px; width: 12px; height: 12px; }
    .timeline-content { padding: 20px; }
    .timeline-content h3 { font-size: 1.3em; }
    
    .bento-item { padding: 30px 25px; }
    .bento-icon { width: 50px; height: 50px; font-size: 1.2em; }
    .bento-item h3 { font-size: 1.3em; }
    
    .store-card { padding: 30px 25px; }
    .card-icon { width: 60px; height: 60px; font-size: 1.4em; }
    .store-card h3 { font-size: 1.2em; }
    
    .company-card { padding: 30px 25px; }
    .company-logo { width: 60px; height: 60px; font-size: 1.1em; }
    .company-info h3 { font-size: 1.3em; }
    
    .location-card { padding: 35px 25px; }
    .location-icon { width: 60px; height: 60px; }
    .location-card h3 { font-size: 1.2em; }
    
    .contact-form-wrapper { padding: 35px 25px; }
    .form-group input { padding: 15px 0; font-size: 1em; }
    .submit-btn { padding: 16px 20px; }
    
    .tts-control { width: 50px; height: 50px; bottom: 25px; right: 25px; }
    
    .about-section, .journey-section, .values-section,
    .stores-section, .companies-section, .locations-section,
    .contact-section { padding: 60px 0; }
    
    .footer { padding: 50px 0; }
    .footer-logo img { height: 50px; }
}

/* Small Mobile (320px - 479px) */
@media (max-width: 479px) {
    .settings-panel { top: 12px; right: 12px; }
    .settings-toggle { width: 40px; height: 40px; font-size: 0.95em; }
    .settings-dropdown { width: 220px; padding: 15px; right: 0; }
    .settings-label { font-size: 0.75em; margin-bottom: 10px; }
    .theme-btn { padding: 10px; font-size: 0.9em; }
    
    .section-container { padding: 0 15px; }
    .hero-content { padding: 70px 15px 40px; }
    .hero-name { font-size: 2em; }
    .hero-tagline { font-size: 0.9em; }
    .stat-number { font-size: 1.8em; }
    .stat-label { font-size: 0.75em; }
    .profile-frame-ai { width: 180px; height: 230px; }
    
    .section-title { font-size: 1.7em; }
    .about-highlight blockquote { font-size: 1.1em; }
    
    .bento-item { padding: 25px 20px; }
    .store-card { padding: 25px 20px; }
    .company-card { padding: 25px 20px; }
    .location-card { padding: 30px 20px; }
    .contact-form-wrapper { padding: 30px 20px; }
    
    .about-section, .journey-section, .values-section,
    .stores-section, .companies-section, .locations-section,
    .contact-section { padding: 50px 0; }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .store-card:hover, .bento-item:hover, .company-card:hover,
    .location-card:hover, .timeline-content:hover { transform: none; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .hero-grid-bg { animation: none; }
    .frame-scan { animation: none; display: none; }
}
