/* AB Collections - Premium About Us Styles */

:root {
    --color-gold-100: #FDF6E3;
    --color-gold-200: #F5E6C8;
    --color-gold-300: #E5C896;
    --color-gold-400: #D4A853;
    --color-gold-500: #C9952C;
    --color-gold-600: #A67B1E;
    --color-brown-400: #8B6D4A;
    --color-brown-500: #5C4A32;
    --color-brown-600: #3D3123;
    --color-brown-700: #2A2118;
    --color-brown-800: #1A150F;
    --color-brown-900: #0F0D0A;
    --color-cream: #FFFEF7;
    --color-ivory: #FAF8F0;
    --color-warm-white: #FDF9F3;
    --gradient-gold: linear-gradient(135deg, var(--color-gold-400) 0%, var(--color-gold-600) 100%);
    --gradient-luxury: linear-gradient(135deg, var(--color-brown-700) 0%, var(--color-brown-900) 100%);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-elegant: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 60px rgba(201, 149, 44, 0.15);
    --radius-lg: 16px;
    --radius-xl: 24px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--color-cream);
    color: var(--color-brown-700);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* African Textile Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/african_textile_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Removed background-attachment: fixed - causes severe lag on Android */
    z-index: -3;
    opacity: 0.7;
    /* GPU acceleration */
    transform: translateZ(0);
    will-change: transform;
}

/* Anchor link offset for fixed navbar */
section[id] {
    scroll-margin-top: 100px;
}

.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    opacity: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, var(--color-brown-400) 35px, var(--color-brown-400) 36px);
}

.bg-gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: 
        linear-gradient(135deg, rgba(255, 254, 247, 0.4) 0%, rgba(250, 248, 240, 0.3) 50%, rgba(253, 249, 243, 0.4) 100%),
        radial-gradient(ellipse at 20% 0%, rgba(201, 149, 44, 0.15) 0%, transparent 50%), 
        radial-gradient(ellipse at 80% 100%, rgba(201, 149, 44, 0.1) 0%, transparent 50%);
    /* backdrop-filter removed for Android performance */
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: linear-gradient(135deg, rgba(253, 249, 243, 0.95) 0%, rgba(245, 230, 200, 0.92) 50%, rgba(253, 249, 243, 0.95) 100%);
    /* backdrop-filter disabled for better Android performance */
    border-bottom: 1px solid rgba(201, 149, 44, 0.15);
    box-shadow: 0 4px 30px rgba(201, 149, 44, 0.08);
    /* GPU acceleration */
    transform: translateZ(0);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-brown-700);
    letter-spacing: 0.1em;
}

.logo-image {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.footer-logo-img {
    height: 50px;
    filter: brightness(0) invert(1);
}

.logo-divider {
    width: 1px;
    height: 24px;
    background: var(--gradient-gold);
}

.logo-tagline {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-gold-500);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-brown-600);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--color-gold-500);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 149, 44, 0.4);
    border-radius: 50px;
    margin-bottom: 3rem;
    animation: fadeInDown 1s var(--transition-elegant) forwards;
    opacity: 0;
    box-shadow: 0 4px 20px rgba(201, 149, 44, 0.15), 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hero-badge i {
    color: var(--color-gold-500);
    font-size: 1.1rem;
}

.hero-badge span {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold-600);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--color-brown-800);
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    animation: fadeInUp 1s var(--transition-elegant) forwards;
    opacity: 0;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
}

.title-line.accent {
    font-weight: 500;
    font-style: italic;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-brown-500);
    letter-spacing: 0.05em;
    margin-bottom: 5rem;
    animation: fadeInUp 1s 0.8s var(--transition-elegant) forwards;
    opacity: 0;
}

.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--color-gold-500);
    animation: fadeIn 1s 1.2s forwards, float 3s ease-in-out infinite;
    opacity: 0;
    cursor: pointer;
}

.hero-scroll-indicator span {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-scroll-indicator i {
    font-size: 1.5rem;
}

.hero-decorative {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201, 149, 44, 0.15);
}

.circle-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    animation: rotate 60s linear infinite;
}

.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation: rotate 45s linear infinite reverse;
}

.circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    border-style: dashed;
    animation: pulse 4s ease-in-out infinite;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header.centered {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-glow);
}

.section-icon i {
    font-size: 1.5rem;
    color: white;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--color-brown-800);
    margin-bottom: 1.5rem;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: var(--gradient-gold);
}

.section-divider i {
    font-size: 0.75rem;
    color: var(--color-gold-500);
}

/* Heritage Section */
.heritage-section {
    padding: 5rem 0 4rem 0;
    background: rgba(253, 249, 243, 0.85);
    /* backdrop-filter removed for Android performance */
    border-top: 1px solid rgba(201, 149, 44, 0.15);
    border-bottom: 1px solid rgba(201, 149, 44, 0.15);
}

.heritage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.heritage-text {
    padding-right: 3rem;
}

.lead-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-brown-700);
    margin-bottom: 2rem;
}

.lead-text .highlight {
    color: var(--color-gold-500);
    font-style: italic;
}

.body-text {
    font-size: 1.1rem;
    color: var(--color-brown-500);
    line-height: 1.8;
}

.heritage-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elevated);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(201, 149, 44, 0.1);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.stat-icon i {
    font-size: 1.25rem;
    color: var(--color-gold-500);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-brown-700);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-brown-400);
    letter-spacing: 0.05em;
}

/* Philosophy Section */
.philosophy-section {
    padding: 5rem 0;
    background: var(--gradient-luxury);
    position: relative;
    overflow: hidden;
}

.philosophy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(201, 149, 44, 0.1) 0%, transparent 40%), radial-gradient(circle at 90% 80%, rgba(201, 149, 44, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.philosophy-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.philosophy-visual {
    display: flex;
    justify-content: center;
}

.visual-frame {
    width: 350px;
    height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frame-accent {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-gold-500);
}

.frame-accent.top-left {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.frame-accent.top-right {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.frame-accent.bottom-left {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.frame-accent.bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.visual-content {
    width: 180px;
    height: 180px;
    background: rgba(201, 149, 44, 0.1);
    border: 1px solid rgba(201, 149, 44, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 4s ease-in-out infinite;
}

.visual-content i {
    font-size: 4rem;
    color: var(--color-gold-400);
}

.visual-content.has-image {
    width: 320px;
    height: 320px;
    background: transparent;
    border: none;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.philosophy-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.visual-frame:hover .philosophy-image {
    transform: scale(1.05);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(201, 149, 44, 0.1);
    border: 1px solid rgba(201, 149, 44, 0.2);
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.section-badge.light span {
    color: white;
}

.section-badge.light i {
    color: var(--color-gold-400);
}

.section-badge i {
    font-size: 1rem;
    color: var(--color-gold-500);
}

.section-badge span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold-600);
}

.philosophy-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: white;
    margin-bottom: 2rem;
}

.philosophy-lead {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-gold-200);
    margin-bottom: 1.5rem;
}

.philosophy-body {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.philosophy-body em {
    color: var(--color-gold-300);
    font-style: normal;
    font-weight: 500;
}

.philosophy-signature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.signature-line {
    width: 40px;
    height: 2px;
    background: var(--gradient-gold);
}

.philosophy-signature span {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-gold-400);
}
/* Collections Gallery Section */
.collections-section {
    padding: 5rem 0;
    background: rgba(253, 249, 243, 0.85);
    border-top: 1px solid rgba(201, 149, 44, 0.15);
    border-bottom: 1px solid rgba(201, 149, 44, 0.15);
}

.collections-intro {
    font-size: 1.1rem;
    color: var(--color-brown-500);
    margin-top: 1.5rem;
    font-weight: 400;
}

/* Type Cards Grid */
.collections-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.type-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(201, 149, 44, 0.12);
    transition: var(--transition-smooth);
}

.type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(201, 149, 44, 0.3);
}

.type-card.active {
    border-color: var(--color-gold-500);
    box-shadow: 0 8px 30px rgba(201, 149, 44, 0.2);
}

.type-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.type-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.type-card:hover .type-card-image img {
    transform: scale(1.05);
}

.type-card-overlay {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
}

.type-color-count {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    color: white;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 50px;
}

.type-color-count i {
    font-size: 0.85rem;
    color: var(--color-gold-300);
}

.type-card-info {
    padding: 1rem 1.1rem 0.85rem;
}

.type-card-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-brown-700);
    margin: 0 0 0.25rem;
    line-height: 1.3;
}

.type-card-detail {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--color-brown-400);
    letter-spacing: 0.03em;
}

.type-expand-icon {
    position: absolute;
    bottom: 0.85rem;
    right: 1rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 149, 44, 0.1);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.type-expand-icon i {
    font-size: 0.9rem;
    color: var(--color-gold-500);
    transition: transform 0.3s ease;
}

.type-card.active .type-expand-icon {
    background: var(--gradient-gold);
}

.type-card.active .type-expand-icon i {
    color: white;
    transform: rotate(180deg);
}

/* Color Variants Glass Modal */
.colors-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.colors-modal.hidden {
    display: none;
}

.colors-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 8, 6, 0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.colors-modal-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 740px;
    max-height: 88vh;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 20px;
    border: 1px solid rgba(201, 149, 44, 0.18);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    overflow: hidden;
    animation: modalSlideUp 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes modalSlideUp {
    from { transform: translateY(40px) scale(0.96); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.colors-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.3rem 1.6rem;
    border-bottom: 1px solid rgba(201, 149, 44, 0.15);
    background: linear-gradient(135deg, rgba(201, 149, 44, 0.07), rgba(253, 246, 227, 0.3));
    position: relative;
}

.colors-modal-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 1.5rem;
    right: 1.5rem;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--color-gold-400), transparent);
    opacity: 0.4;
}

.colors-modal-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-brown-700);
    margin: 0;
    letter-spacing: 0.01em;
}

.colors-modal-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(201, 149, 44, 0.1);
    border-radius: 50%;
    cursor: pointer;
    color: var(--color-brown-600);
    font-size: 1.15rem;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.colors-modal-close:hover {
    background: var(--color-gold-500);
    color: white;
    transform: rotate(90deg);
}

.colors-modal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
    padding: 1.5rem;
    overflow-y: auto;
    max-height: calc(88vh - 80px);
    scroll-behavior: smooth;
}

/* Custom scrollbar */
.colors-modal-grid::-webkit-scrollbar {
    width: 5px;
}

.colors-modal-grid::-webkit-scrollbar-track {
    background: transparent;
}

.colors-modal-grid::-webkit-scrollbar-thumb {
    background: rgba(201, 149, 44, 0.25);
    border-radius: 10px;
}

.variant-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(201, 149, 44, 0.08);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    background: #f5f3ef;
}

.variant-item:hover {
    border-color: var(--color-gold-400);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.variant-item:active {
    transform: translateY(-1px);
}

.variant-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.variant-item:hover img {
    transform: scale(1.05);
}

.variant-item .variant-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 0.6rem 0.6rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
    text-align: center;
}

.variant-label span {
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.08em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Mobile modal - Bottom sheet style */
@media (max-width: 768px) {
    .colors-modal {
        padding: 0;
        align-items: flex-end;
    }

    .colors-modal-content {
        max-height: 92vh;
        max-width: 100%;
        border-radius: 22px 22px 0 0;
        animation: mobileSlideUp 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }
    
    @keyframes mobileSlideUp {
        from { transform: translateY(100%); }
        to { transform: translateY(0); }
    }
    
    .colors-modal-header {
        padding: 1.1rem 1.25rem;
    }
    
    .colors-modal-title {
        font-size: 1.15rem;
    }
    
    .colors-modal-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem 1.25rem;
        max-height: calc(92vh - 65px);
    }
    
    .variant-item {
        border-radius: 14px;
        aspect-ratio: auto;
    }
    
    .variant-item img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    .variant-item:hover {
        transform: none;
    }
}

/* Fullscreen Image Viewer */
.image-viewer {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.image-viewer.hidden {
    display: none;
}

.viewer-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    animation: viewerZoomIn 0.3s ease;
}

@keyframes viewerZoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.viewer-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 1.25rem;
    transition: 0.2s ease;
    z-index: 10;
}

.viewer-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.viewer-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 1.5rem;
    transition: 0.2s ease;
    z-index: 10;
}

.viewer-nav:hover {
    background: rgba(255, 255, 255, 0.25);
}

.viewer-prev { left: 1rem; }
.viewer-next { right: 1rem; }

.viewer-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.1em;
}

/* Mobile: 2 columns */
@media (max-width: 768px) {
    .collections-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }
    
    .type-card-info {
        padding: 0.75rem 0.85rem 0.65rem;
    }
    
    .type-card-name {
        font-size: 0.92rem;
    }
    
    .type-card-detail {
        font-size: 0.7rem;
    }
    
    .type-expand-icon {
        width: 24px;
        height: 24px;
        bottom: 0.65rem;
        right: 0.75rem;
    }
    
    .type-expand-icon i {
        font-size: 0.75rem;
    }
    
    .viewer-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .viewer-prev { left: 0.5rem; }
    .viewer-next { right: 0.5rem; }
}

@media (max-width: 400px) {
    .collections-types-grid {
        gap: 0.65rem;
    }
    
    .type-card-name {
        font-size: 0.85rem;
    }
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: rgba(250, 248, 240, 0.85);
    /* backdrop-filter removed for Android performance */
    border-top: 1px solid rgba(201, 149, 44, 0.15);
    border-bottom: 1px solid rgba(201, 149, 44, 0.15);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.95);
    /* backdrop-filter removed for Android performance */
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(201, 149, 44, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-elevated);
}

.value-card:hover .value-icon-bg {
    background: var(--gradient-gold);
}

.value-card:hover .value-icon-wrapper i {
    color: white;
    transform: scale(1.1);
}

.value-card:hover .value-accent {
    transform: scaleX(1);
}

.value-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.value-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(201, 149, 44, 0.1);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.value-icon-wrapper i {
    position: relative;
    z-index: 2;
    font-size: 2rem;
    color: var(--color-gold-500);
    transition: var(--transition-smooth);
}

.value-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-brown-700);
    margin-bottom: 1rem;
}

.value-description {
    font-size: 0.95rem;
    color: var(--color-brown-400);
    line-height: 1.7;
}

.value-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

/* Experience Section */
.experience-section {
    padding: 5rem 0;
    background: rgba(253, 249, 243, 0.85);
    /* backdrop-filter removed for Android performance */
    border-top: 1px solid rgba(201, 149, 44, 0.15);
    border-bottom: 1px solid rgba(201, 149, 44, 0.15);
    position: relative;
    overflow: hidden;
}

.experience-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: center;
}

.experience-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--color-brown-800);
    margin-bottom: 2rem;
}

.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.experience-text {
    font-size: 1.2rem;
    color: var(--color-brown-500);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.experience-text strong {
    color: var(--color-brown-700);
    font-weight: 600;
}

.experience-features {
    display: flex;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-brown-600);
}

.feature-item i {
    font-size: 1.25rem;
    color: var(--color-gold-500);
}

.experience-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    width: 300px;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at center, var(--color-gold-400) 0%, transparent 70%);
    filter: blur(40px);
    animation: pulse 4s ease-in-out infinite;
}

.card-content {
    position: relative;
    z-index: 2;
    width: 220px;
    height: 220px;
    background: white;
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-elevated);
    border: 1px solid rgba(201, 149, 44, 0.1);
}

.card-content i {
    font-size: 4rem;
    color: var(--color-gold-500);
}

.card-text {
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    color: var(--color-brown-500);
    text-align: center;
    padding: 0 1.5rem;
}

/* Footer */
.footer {
    padding: 5rem 0 4rem;
    background: var(--gradient-luxury);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(201, 149, 44, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(201, 149, 44, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-brand {
    margin-bottom: 2.5rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-text {
    color: white;
}

.footer-logo .logo-tagline {
    color: var(--color-gold-400);
    font-size: 1.15rem;
    letter-spacing: 0.18em;
}

.footer-logo .logo-divider {
    background: var(--color-gold-400);
    height: 28px;
}

.footer-logo-img {
    height: 60px !important;
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-gold-300);
    letter-spacing: 0.03em;
}

.footer-divider {
    width: 150px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold-500), transparent);
    margin: 2.5rem auto;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-social {
    display: flex;
    gap: 1.2rem;
    padding-right: 70px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1.5px solid rgba(201, 149, 44, 0.4);
    border-radius: 50%;
    color: var(--color-gold-400);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-link:hover {
    background: var(--gradient-gold);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(201, 149, 44, 0.3);
}

.social-link i {
    font-size: 1.4rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(0.98);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-elegant);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   RESPONSIVE DESIGN - MOBILE FIRST
   Optimized for QR code visitors
   ================================ */

/* Tablet Landscape (1200px) */
@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .heritage-content {
        gap: 5rem;
    }

    .philosophy-wrapper {
        gap: 5rem;
    }
}

/* Tablet Portrait (992px) */
@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }

    .heritage-section,
    .philosophy-section,
    .values-section,
    .experience-section {
        padding: 5rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .heritage-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .heritage-text {
        padding-right: 0;
        text-align: center;
    }

    .heritage-stats {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .philosophy-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .philosophy-visual {
        order: -1;
    }

    .philosophy-signature {
        justify-content: center;
    }

    .visual-frame {
        width: 300px;
        height: 300px;
    }

    .visual-content.has-image {
        width: 270px;
        height: 270px;
    }

    .experience-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .experience-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .experience-visual {
        order: -1;
    }

    .visual-card {
        width: 250px;
        height: 250px;
    }

    .card-content {
        width: 180px;
        height: 180px;
    }

    .card-content i {
        font-size: 3rem;
    }
}

/* Mobile Large (768px) */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }

    .nav-links {
        display: none;
    }

    .logo-text {
        font-size: 1.75rem;
    }

    .logo-tagline {
        font-size: 0.85rem;
    }

    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        /* Dynamic viewport height for mobile browsers */
        padding: 6rem 1.5rem;
    }

    .hero-badge {
        margin-bottom: 2rem;
        padding: 0.4rem 1rem;
    }

    .hero-badge span {
        font-size: 0.65rem;
        letter-spacing: 0.15em;
    }

    .hero-title {
        font-size: clamp(2.25rem, 10vw, 3.5rem);
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .decorative-circle {
        opacity: 0.5;
    }

    .circle-1 {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -100px;
    }

    .circle-2 {
        width: 200px;
        height: 200px;
        bottom: -50px;
        left: -50px;
    }

    .circle-3 {
        display: none;
    }

    .section-icon {
        width: 50px;
        height: 50px;
    }

    .section-icon i {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .heritage-stats {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }

    .lead-text {
        font-size: 1.35rem;
    }

    .body-text {
        font-size: 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .value-card {
        padding: 2rem 1.5rem;
    }

    .value-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .value-icon-wrapper i {
        font-size: 1.75rem;
    }

    .value-title {
        font-size: 1.15rem;
    }

    .value-description {
        font-size: 0.9rem;
    }

    .philosophy-lead {
        font-size: 1.25rem;
    }

    .philosophy-body {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .experience-title {
        font-size: 1.75rem;
    }

    .experience-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .experience-features {
        gap: 0.75rem;
    }

    .feature-item {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        background: rgba(201, 149, 44, 0.08);
        border-radius: 50px;
    }

    .footer {
        padding: 3rem 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
    }

    .footer-social {
        gap: 1.2rem;
        justify-content: center;
        padding-right: 0;
    }

    .social-link {
        width: 48px;
        height: 48px;
    }
}

/* Mobile Medium (576px) */
@media (max-width: 576px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero {
        padding: 5rem 1.25rem;
    }

    .hero-title {
        font-size: clamp(2rem, 12vw, 3rem);
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .hero-scroll-indicator span {
        font-size: 0.7rem;
    }

    .heritage-section,
    .philosophy-section,
    .values-section,
    .experience-section {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-divider {
        gap: 1rem;
    }

    .divider-line {
        width: 40px;
    }

    .visual-frame {
        width: 280px;
        height: 280px;
    }

    .visual-content.has-image {
        width: 250px;
        height: 250px;
    }

    .frame-accent {
        width: 30px;
        height: 30px;
    }

    .philosophy-title {
        font-size: 1.5rem;
    }

    .philosophy-lead {
        font-size: 1.1rem;
    }

    .values-grid {
        max-width: 100%;
    }

    .visual-card {
        width: 220px;
        height: 220px;
    }

    .card-content {
        width: 160px;
        height: 160px;
        gap: 1rem;
    }

    .card-content i {
        font-size: 2.5rem;
    }

    .card-text {
        font-size: 0.85rem;
    }

    .experience-features {
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }

    .footer-logo .logo-text {
        font-size: 1.5rem;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }

    .copyright {
        font-size: 0.8rem;
        text-align: center;
    }
}

/* Mobile Small (400px) */
@media (max-width: 400px) {
    .container {
        padding: 0 1rem;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo {
        gap: 0.5rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo-divider {
        height: 18px;
    }

    .logo-tagline {
        font-size: 0.7rem;
    }

    .hero {
        padding: 4.5rem 1rem;
    }

    .hero-badge {
        padding: 0.35rem 0.75rem;
    }

    .hero-badge i {
        font-size: 0.85rem;
    }

    .hero-badge span {
        font-size: 0.6rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 1rem;
    }

    .section-icon i {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .heritage-section,
    .philosophy-section,
    .values-section,
    .experience-section {
        padding: 3rem 0;
    }

    .lead-text {
        font-size: 1.2rem;
    }

    .heritage-stats {
        max-width: 100%;
    }

    .stat-card {
        padding: 1.25rem 1rem;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.75rem;
    }

    .stat-icon i {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .visual-frame {
        width: 240px;
        height: 240px;
    }

    .visual-content.has-image {
        width: 210px;
        height: 210px;
    }

    .frame-accent {
        width: 25px;
        height: 25px;
    }

    .section-badge {
        padding: 0.4rem 1rem;
    }

    .section-badge span {
        font-size: 0.65rem;
    }

    .philosophy-title {
        font-size: 1.35rem;
    }

    .philosophy-lead {
        font-size: 1rem;
    }

    .philosophy-body {
        font-size: 0.95rem;
    }

    .philosophy-signature span {
        font-size: 1rem;
    }

    .value-card {
        padding: 1.75rem 1.25rem;
    }

    .value-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .value-icon-wrapper i {
        font-size: 1.5rem;
    }

    .value-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .value-description {
        font-size: 0.85rem;
    }

    .experience-title {
        font-size: 1.35rem;
    }

    .experience-text {
        font-size: 0.95rem;
    }

    .visual-card {
        width: 200px;
        height: 200px;
    }

    .card-content {
        width: 150px;
        height: 150px;
    }

    .card-content i {
        font-size: 2rem;
    }

    .card-text {
        font-size: 0.8rem;
        padding: 0 1rem;
    }

    .footer {
        padding: 2.5rem 0;
    }

    .footer-brand {
        margin-bottom: 1.5rem;
    }

    .footer-divider {
        margin: 1.5rem auto;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }
}

/* Touch-friendly Improvements */
@media (hover: none) and (pointer: coarse) {

    .stat-card:hover,
    .value-card:hover {
        transform: none;
    }

    .stat-card:active,
    .value-card:active {
        transform: scale(0.98);
    }

    .social-link:hover {
        transform: none;
    }

    .social-link:active {
        background: var(--gradient-gold);
        border-color: transparent;
        color: white;
    }

    /* Remove hover zoom on mobile */
    .visual-frame:hover .philosophy-image {
        transform: none;
    }
}

/* Safe area insets for notched devices */
@supports (padding: max(0px)) {
    .navbar {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }

    .footer {
        padding-bottom: max(2.5rem, env(safe-area-inset-bottom));
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-scroll-indicator {
        animation: none;
    }

    .decorative-circle {
        animation: none;
    }
}

/* ================================
   ANDROID/MOBILE PERFORMANCE FIX
   Disable heavy effects on touch devices
   ================================ */
@media (hover: none) and (pointer: coarse) {
    /* Disable all backdrop filters */
    .navbar,
    .hero-badge,
    .heritage-section,
    .collections-section,
    .values-section,
    .experience-section,
    .value-card,
    .terms-modal,
    .terms-modal-content,
    .bg-gradient-overlay {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    /* Disable heavy animations */
    .decorative-circle {
        display: none !important;
    }
    
    .hero-scroll-indicator {
        animation: fadeIn 0.5s forwards !important;
    }
    
    .featured-badge {
        animation: none !important;
    }
    
    .card-glow {
        animation: none !important;
        filter: none !important;
        display: none !important;
    }
    
    .visual-content {
        animation: none !important;
    }
    
    /* Disable CSS transforms on scroll-heavy elements */
    .type-card:hover .type-card-image img {
        transform: none !important;
    }
    
    .variant-item:hover {
        transform: none !important;
    }
    
    /* Force GPU layers for smooth scrolling */
    .collections-types-grid,
    .values-grid,
    .heritage-content,
    .philosophy-wrapper,
    .experience-wrapper {
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
    
    /* Disable hover transforms */
    .stat-card:hover,
    .value-card:hover,
    .social-link:hover {
        transform: none !important;
    }
    
    /* Simpler box shadows */
    .stat-card,
    .value-card,
    .card-content {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
    }
    
    .stat-card:hover,
    .value-card:hover {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
    }
}

/* Terms and Conditions Link */
.terms-link {
    color: var(--color-gold-500);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.terms-link:hover {
    color: var(--color-gold-600);
    text-decoration: underline;
}

/* Terms and Conditions Modal */
.terms-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.terms-modal.active {
    display: flex;
    opacity: 1;
}

.terms-modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    max-width: 650px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(201, 149, 44, 0.2);
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.terms-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--gradient-gold);
    color: white;
}

.terms-modal-header h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
}

.terms-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.75rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.terms-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.terms-modal-body {
    padding: 2rem;
    overflow-y: auto;
    max-height: calc(80vh - 80px);
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-list li {
    position: relative;
    padding: 1rem 0 1rem 2rem;
    color: var(--color-brown-600);
    font-size: 1rem;
    line-height: 1.7;
    border-bottom: 1px solid rgba(201, 149, 44, 0.1);
}

.terms-list li:last-child {
    border-bottom: none;
}

.terms-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.35rem;
    width: 8px;
    height: 8px;
    background: var(--gradient-gold);
    border-radius: 50%;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    z-index: 999;
    transition: var(--transition-smooth);
}

/* Tooltip label */
.whatsapp-float .wa-tooltip {
    background: white;
    color: #333;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.55rem 1.1rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    margin-right: 12px;
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Green circle icon */
.whatsapp-float .wa-icon {
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    transition: var(--transition-smooth);
    flex-shrink: 0;
    animation: whatsappPulse 2.5s ease-in-out infinite;
}

.whatsapp-float .wa-icon i {
    font-size: 2rem;
    color: white;
}

.whatsapp-float:hover .wa-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:active .wa-icon {
    transform: scale(0.95);
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.5), 0 0 0 8px rgba(37, 211, 102, 0.08);
    }
}

/* Mobile adjustments for floating button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 18px;
    }

    .whatsapp-float .wa-icon {
        width: 56px;
        height: 56px;
    }

    .whatsapp-float .wa-icon i {
        font-size: 1.75rem;
    }

    .whatsapp-float .wa-tooltip {
        display: none;
    }
}

/* ===== MOBILE RESPONSIVE STYLES ===== */

/* Tablet and below */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.75rem;
    }
    
    .heritage-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .heritage-text {
        padding-right: 0;
    }
    
    .philosophy-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .experience-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Navbar - smaller and compact */
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo {
        gap: 0.3rem;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .logo-divider {
        height: 18px;
    }
    
    .logo-tagline {
        font-size: 0.7rem;
        letter-spacing: 0.1em;
    }
    
    .nav-links {
        display: none;
    }
    
    /* Hero - bigger text */
    .hero {
        padding: 6rem 1.5rem 4rem;
        min-height: 90vh;
    }
    
    .hero-badge {
        padding: 0.5rem 1.25rem;
        margin-bottom: 2rem;
    }
    
    .hero-badge span {
        font-size: 0.65rem;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    /* Sections */
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .section-icon {
        width: 50px;
        height: 50px;
    }
    
    .section-icon i {
        font-size: 1.25rem;
    }
    
    .heritage-section,
    .collections-section,
    .values-section,
    .experience-section {
        padding: 3rem 0;
    }
    
    .heritage-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    /* Footer */
    .footer-content {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .navbar {
        padding: 0.4rem 0;
    }
    
    .logo-image {
        height: 30px;
    }
    
    .logo-tagline {
        font-size: 0.6rem;
    }
    
    .hero {
        padding: 5rem 1rem 3rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 12vw, 3.5rem);
    }
    
    .hero-badge {
        padding: 0.4rem 1rem;
    }
    
    .hero-badge span {
        font-size: 0.6rem;
        letter-spacing: 0.1em;
    }
    
    .lead-text {
        font-size: 1.25rem;
    }
    
    .body-text {
        font-size: 0.95rem;
    }
    
    .featured-badge {
        font-size: 0.6rem;
        padding: 0.4rem 0.8rem;
    }
    
    .collection-name {
        font-size: 0.95rem;
    }
    
    .philosophy-title,
    .experience-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
}