/* ============================================
   GRASPMATYX - The Science of Numbers
   CSS Stylesheet
   Ethiopian Heritage Aesthetic 🇪🇹
   Green • Yellow • Red
   ============================================ */

/* CSS Custom Properties */
:root {
    /* Ethiopian Flag Colors */
    --ethiopian-green: #078930;
    --ethiopian-yellow: #FCDD09;
    --ethiopian-red: #DA121A;
    --ethiopian-green-dark: #046124;
    --ethiopian-green-light: #0AA33D;
    
    /* Primary Colors - Gold & Ethiopian Yellow */
    --gold-primary: #FCDD09;
    --gold-light: #FFF4B8;
    --gold-dark: #D4B607;
    --gold-glow: rgba(252, 221, 9, 0.4);
    
    /* Earth Tones with Ethiopian influence */
    --earth-deep: #1A1A1A;
    --earth-brown: #2D1810;
    --earth-warm: #4A2C1A;
    --earth-sand: #C4A77D;
    
    /* Accent Colors - Ethiopian Palette */
    --rainbow-red: #DA121A;
    --rainbow-orange: #F77F00;
    --rainbow-yellow: #FCDD09;
    --rainbow-green: #078930;
    --rainbow-blue: #0077B6;
    --rainbow-purple: #7B2D8E;
    
    /* Neutrals */
    --cream: #FFFEF5;
    --ivory: #FFFFF0;
    --charcoal: #1A1A1A;
    --smoke: #F8F8F5;
    
    /* Typography */
    --font-display: 'Cinzel', serif;
    --font-heading: 'Philosopher', sans-serif;
    --font-body: 'Cormorant Garamond', serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--earth-deep);
    background-color: var(--cream);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--earth-deep);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    margin-bottom: 1rem;
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    background: linear-gradient(180deg, rgba(44, 24, 16, 0.95) 0%, rgba(44, 24, 16, 0.8) 100%);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(44, 24, 16, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

/* Logo */
.logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
}

.logo-grasp, .logo-matyx {
    color: var(--gold-primary);
}

.logo-p {
    background: linear-gradient(135deg, 
        var(--ethiopian-green) 0%, 
        var(--ethiopian-yellow) 50%, 
        var(--ethiopian-red) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-menu a {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--gold-light);
    padding: var(--space-xs) var(--space-sm);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 80%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold-primary);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition-fast);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--space-xl) var(--space-md);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 50% 100%, rgba(252, 221, 9, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 30%, rgba(7, 137, 48, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 20%, rgba(218, 18, 26, 0.1) 0%, transparent 40%),
        linear-gradient(180deg, #0D2818 0%, #0A1F14 40%, #1A1A1A 100%);
    z-index: -2;
}

.pyramid-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpolygon points='50,15 85,85 15,85' fill='none' stroke='%23D4AF3720' stroke-width='0.5'/%3E%3C/svg%3E") center center / 40% 40% no-repeat;
    z-index: -1;
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.eye-decoration {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cellipse cx='50' cy='50' rx='35' ry='20' fill='none' stroke='%23D4AF3730' stroke-width='2'/%3E%3Ccircle cx='50' cy='50' r='12' fill='none' stroke='%23D4AF3730' stroke-width='2'/%3E%3Ccircle cx='50' cy='50' r='5' fill='%23D4AF3730'/%3E%3Cpath d='M50 70 L50 90' stroke='%23D4AF3730' stroke-width='2'/%3E%3C/svg%3E") center center / contain no-repeat;
    opacity: 0.4;
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.5; transform: translateX(-50%) scale(1.05); }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
    padding: var(--space-xs) var(--space-md);
    margin-bottom: var(--space-md);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.title-grasp, .title-matyx {
    color: var(--gold-primary);
    text-shadow: 0 0 40px var(--gold-glow);
}

.title-p {
    background: linear-gradient(135deg, 
        var(--rainbow-red) 0%, 
        var(--rainbow-orange) 20%, 
        var(--rainbow-yellow) 40%, 
        var(--rainbow-green) 60%, 
        var(--rainbow-blue) 80%, 
        var(--rainbow-purple) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    animation: rainbowShift 5s ease-in-out infinite;
}

@keyframes rainbowShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(30deg); }
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--gold-light);
    margin-bottom: var(--space-xs);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-tagline {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--earth-sand);
    margin-bottom: var(--space-md);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gold-light);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-cta {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--earth-deep);
    border-color: var(--gold-primary);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--gold-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-light);
    border-color: var(--gold-light);
}

.btn-secondary:hover {
    background: var(--gold-light);
    color: var(--earth-deep);
}

.btn-outline {
    background: transparent;
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}

.btn-outline:hover {
    background: var(--gold-primary);
    color: var(--earth-deep);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeInUp 1s ease-out 1s both;
}

.scroll-indicator span {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    opacity: 0.6;
    margin-bottom: var(--space-xs);
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    margin: 0 auto;
    border-right: 2px solid var(--gold-primary);
    border-bottom: 2px solid var(--gold-primary);
    transform: rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(8px); }
}

/* ============================================
   SECTIONS - Common Styles
   ============================================ */
section {
    padding: var(--space-xl) 0;
}

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

.section-title {
    color: var(--earth-deep);
    margin-bottom: var(--space-sm);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--earth-warm);
    margin-top: var(--space-sm);
}

/* ============================================
   AWAKENING SECTION
   ============================================ */
.awakening-section {
    background: var(--earth-deep);
    position: relative;
    overflow: hidden;
}

.awakening-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, var(--earth-brown), transparent);
}

.awakening-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-lg);
    align-items: center;
}

.awakening-image {
    position: relative;
}

.awakening-image img {
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.awakening-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.2);
}

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

.awakening-text .section-title {
    color: var(--gold-primary);
    text-align: left;
}

.awakening-text .section-title::after {
    left: 0;
    transform: none;
}

.awakening-quote {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--gold-primary);
    margin-bottom: var(--space-md);
    padding-left: var(--space-md);
    border-left: 3px solid var(--gold-primary);
}

.awakening-text p {
    opacity: 0.9;
}

.awakening-text em {
    color: var(--gold-primary);
    font-style: normal;
    font-weight: 600;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
    background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
}

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

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(44, 24, 16, 0.1);
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(44, 24, 16, 0.15);
}

.product-card.featured {
    border: 2px solid var(--gold-primary);
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--earth-warm) 0%, var(--earth-brown) 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: var(--space-md);
    transition: var(--transition-smooth);
}

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

.product-badge {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    background: var(--gold-primary);
    color: var(--earth-deep);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Seeds of Life Slideshow */
.seeds-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2D5016 0%, #1A3009 100%);
}

.seeds-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.seeds-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.seeds-slide.active {
    opacity: 1;
    z-index: 1;
}

.seeds-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seeds-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.seed-icon {
    font-size: 6rem;
    animation: seedGrow 3s ease-in-out infinite;
}

.seed-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(45, 80, 22, 0.4) 0%, transparent 70%);
    animation: seedPulse 3s ease-in-out infinite;
}

.seeds-slideshow-controls {
    position: absolute;
    bottom: var(--space-sm);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    padding: var(--space-xs) var(--space-sm);
    border-radius: 20px;
}

.seeds-prev,
.seeds-next {
    background: var(--gold-primary);
    color: var(--earth-deep);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.seeds-prev:hover,
.seeds-next:hover {
    background: var(--gold-light);
    transform: scale(1.1);
}

.seeds-dots {
    display: flex;
    gap: 0.5rem;
}

.seeds-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-fast);
}

.seeds-dot.active {
    background: var(--gold-primary);
    transform: scale(1.2);
}

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

@keyframes seedPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.3); opacity: 0.2; }
}

/* Doctor Gallery */
.doctor-gallery {
    position: relative;
    width: 100%;
    height: 100%;
}

.doctor-gallery img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity var(--transition-smooth);
    border-radius: 16px;
}

.doctor-gallery img.active {
    opacity: 1;
    z-index: 1;
}

.doctor-gallery-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 var(--space-sm);
    z-index: 10;
    pointer-events: none;
}

.doctor-prev,
.doctor-next {
    background: rgba(212, 175, 55, 0.9);
    color: var(--earth-deep);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    pointer-events: all;
}

.doctor-prev:hover,
.doctor-next:hover {
    background: var(--gold-primary);
    transform: scale(1.1);
}

.product-content {
    padding: var(--space-md);
}

.product-content h3 {
    margin-bottom: var(--space-xs);
}

.product-author {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    color: var(--gold-dark);
    margin-bottom: var(--space-sm);
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: var(--space-md) 0;
    padding: var(--space-sm);
    background: var(--smoke);
    border-radius: 8px;
}

.product-features span {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    color: var(--earth-brown);
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--smoke);
}

.price {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold-dark);
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
    background: var(--earth-deep);
    color: var(--gold-light);
}

.video-section .section-title {
    color: var(--gold-primary);
}

.video-section .section-subtitle {
    color: var(--earth-sand);
}

.video-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-md);
}

.video-card {
    cursor: pointer;
}

.video-thumbnail {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--earth-brown);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--earth-deep);
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 40px var(--gold-glow);
}

.video-duration {
    position: absolute;
    bottom: var(--space-sm);
    right: var(--space-sm);
    background: rgba(0, 0, 0, 0.8);
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.video-card h4 {
    color: var(--gold-primary);
    margin: var(--space-sm) 0 var(--space-xs);
}

.video-card p {
    font-size: 0.95rem;
    opacity: 0.8;
}

.video-cta {
    text-align: center;
    margin-top: var(--space-lg);
}

/* ============================================
   IMPACT SECTION
   ============================================ */
.impact-section {
    background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

.impact-card {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(44, 24, 16, 0.08);
    transition: var(--transition-smooth);
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(44, 24, 16, 0.12);
}

.impact-icon {
    font-size: 4rem;
    margin-bottom: var(--space-sm);
}

.impact-card h4 {
    color: var(--gold-dark);
    margin-bottom: var(--space-xs);
}

.impact-card p {
    font-size: 0.95rem;
    color: var(--earth-warm);
}

/* ============================================
   DOCTOR PREVIEW SECTION
   ============================================ */
.doctor-preview {
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        var(--earth-deep);
    color: var(--gold-light);
}

.doctor-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-lg);
    align-items: center;
}

.doctor-image {
    position: relative;
}

.doctor-image img {
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.image-frame {
    position: absolute;
    inset: -15px;
    border: 2px solid var(--gold-primary);
    border-radius: 20px;
    opacity: 0.3;
    pointer-events: none;
}

.doctor-text h2 {
    color: var(--gold-primary);
    margin-bottom: var(--space-xs);
}

.doctor-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--earth-sand);
    margin-bottom: var(--space-md);
}

.doctor-text em {
    color: var(--gold-primary);
    font-style: normal;
    font-weight: 600;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--earth-deep);
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: var(--earth-deep);
    margin-bottom: var(--space-sm);
}

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(44, 24, 16, 0.2);
}

.newsletter-form .btn {
    white-space: nowrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--earth-deep);
    color: var(--gold-light);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-brand .logo {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.footer-brand p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--gold-primary);
    color: var(--earth-deep);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--gold-primary);
    font-size: 1rem;
    margin-bottom: var(--space-md);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-links a {
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold-primary);
}

.footer-contact p {
    opacity: 0.8;
    font-size: 0.95rem;
    margin-bottom: var(--space-sm);
}

.footer-bottom {
    padding-top: var(--space-md);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    opacity: 0.7;
}

/* ============================================
   VIDEO MODAL
   ============================================ */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--gold-primary);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover {
    transform: scale(1.1);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   ABOUT PAGE SPECIFIC
   ============================================ */
.page-header {
    padding: 180px 0 80px;
    background: 
        radial-gradient(ellipse at 50% 100%, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
        linear-gradient(180deg, var(--earth-deep) 0%, var(--earth-brown) 100%);
    text-align: center;
}

.page-header h1 {
    color: var(--gold-primary);
    margin-bottom: var(--space-sm);
}

.page-header p {
    color: var(--gold-light);
    font-size: 1.25rem;
    opacity: 0.9;
}

.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    padding: var(--space-xl) 0;
}

.about-image img {
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(44, 24, 16, 0.2);
}

.about-text h2 {
    color: var(--gold-dark);
    margin-bottom: var(--space-md);
}

.timeline {
    position: relative;
    padding-left: var(--space-lg);
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold-primary), var(--gold-light));
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-lg);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: calc(-1 * var(--space-lg) - 6px);
    top: 0;
    width: 14px;
    height: 14px;
    background: var(--gold-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--cream);
}

.timeline-date {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    color: var(--gold-dark);
    margin-bottom: var(--space-xs);
}

.timeline-item h4 {
    color: var(--earth-deep);
    margin-bottom: var(--space-xs);
}

/* ============================================
   SHOP PAGE SPECIFIC
   ============================================ */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-md);
}

.shop-category {
    margin-bottom: var(--space-xl);
}

.shop-category h2 {
    color: var(--earth-deep);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--gold-primary);
}

.shop-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(44, 24, 16, 0.08);
    transition: var(--transition-smooth);
}

.shop-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(44, 24, 16, 0.12);
}

.shop-item-image {
    height: 200px;
    background: linear-gradient(135deg, var(--earth-warm) 0%, var(--earth-brown) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.shop-item-image img {
    max-height: 100%;
    object-fit: contain;
}

.shop-item-content {
    padding: var(--space-md);
}

.shop-item-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.shop-item-content .price {
    font-size: 1.5rem;
}

/* ============================================
   VIDEOS PAGE SPECIFIC
   ============================================ */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-md);
}

.video-item {
    background: var(--earth-deep);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.video-item .video-thumbnail {
    border-radius: 0;
}

.video-item-content {
    padding: var(--space-md);
    color: var(--gold-light);
}

.video-item-content h3 {
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
}

/* ============================================
   CONTACT PAGE SPECIFIC
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.contact-form-section {
    background: white;
    padding: var(--space-lg);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(44, 24, 16, 0.1);
}

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

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    color: var(--earth-brown);
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--earth-sand);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

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

.contact-info {
    padding: var(--space-lg);
}

.contact-info h3 {
    color: var(--gold-dark);
    margin-bottom: var(--space-md);
}

.contact-item {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--earth-sand);
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1rem;
    color: var(--earth-deep);
    margin-bottom: 0.25rem;
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--earth-warm);
    margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .awakening-content,
    .doctor-content,
    .about-hero,
    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .awakening-text .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .awakening-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .doctor-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --space-lg: 3rem;
        --space-xl: 4rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--earth-deep);
        flex-direction: column;
        padding: var(--space-md);
        gap: 0;
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-menu a {
        display: block;
        padding: var(--space-sm);
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .videos-grid,
    .shop-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-slow);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.text-gold { color: var(--gold-primary); }
.text-center { text-align: center; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

