/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables */
:root {
    --primary-gold: #d4af37;
    --secondary-gold: #f4e4aa;
    --dark-gold: #b8941f;
    --deep-blue: #1a2238;
    --medium-blue: #2a3449;
    --light-blue: #3a4759;
    --purple: #6a4c93;
    --light-purple: #8b6bb1;
    --crimson: #9b2226;
    --emerald: #2d6a4f;
    --ivory: #f8f9fa;
    --light-gray: #e9ecef;
    --medium-gray: #6c757d;
    --shadow: rgba(0, 0, 0, 0.15);
    --shadow-heavy: rgba(0, 0, 0, 0.25);
    --gradient-primary: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    --gradient-bg: linear-gradient(135deg, var(--deep-blue), var(--medium-blue), var(--purple));
    --gradient-card: linear-gradient(145deg, #ffffff, #f8f9fa);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Body */
body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--deep-blue);
    background: var(--gradient-bg);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--deep-blue);
}

.highlight {
    background: linear-gradient(120deg, var(--secondary-gold) 0%, var(--secondary-gold) 100%);
    background-repeat: no-repeat;
    background-size: 100% 30%;
    background-position: 0 85%;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 500;
    color: var(--deep-blue);
    transition: all 0.3s ease;
}

.highlight:hover {
    background-size: 100% 100%;
    background-position: 0 0;
    color: var(--deep-blue);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 34, 56, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--primary-gold);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
    animation: rotate 8s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--ivory);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: var(--deep-blue);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-bg);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    text-align: center;
    color: var(--ivory);
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

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

.egyptian-symbol {
    font-size: 4rem;
    color: var(--primary-gold);
    animation: float 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

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

.hero-title {
    font-size: 3.5rem;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--secondary-gold);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--light-gray);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: var(--gradient-primary);
    color: var(--deep-blue);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px var(--shadow-heavy);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--shadow-heavy);
    background: linear-gradient(135deg, var(--secondary-gold), var(--primary-gold));
}

.cta-button i {
    animation: bounce 1s ease-in-out infinite;
}

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

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="ankh" patternUnits="userSpaceOnUse" width="100" height="100"><path d="M50 20c-8 0-15 7-15 15s7 15 15 15 15-7 15-15-7-15-15-15zm0 40c-5 0-10-2-10-5v25h20V55c0 3-5 5-10 5z" fill="rgba(212,175,55,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23ankh)"/></svg>') repeat;
    opacity: 0.1;
    animation: drift 20s linear infinite;
}

@keyframes drift {
    from { transform: translateX(0) translateY(0); }
    to { transform: translateX(-100px) translateY(-100px); }
}

/* Main Content */
.main-content {
    background: var(--ivory);
    position: relative;
    z-index: 1;
    margin-top: -100px;
    border-radius: 50px 50px 0 0;
}

.content-section {
    padding: 4rem 0;
    position: relative;
}

.content-section:nth-child(even) {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--deep-blue);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.divider {
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto 2rem;
    border-radius: 2px;
    position: relative;
}

.divider::before, .divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary-gold);
    border-radius: 50%;
    transform: translateY(-50%);
}

.divider::before {
    left: -30px;
}

.divider::after {
    right: -30px;
}

/* Content Cards */
.content-card {
    background: var(--gradient-card);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    margin-bottom: 2rem;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.content-card:hover::before {
    transform: scaleX(1);
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-heavy);
}

.content-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.intro-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--deep-blue);
    border-left: 4px solid var(--primary-gold);
    padding-left: 2rem;
    margin: 2rem 0;
    background: rgba(212, 175, 55, 0.05);
    padding: 2rem;
    border-radius: 10px;
}

/* Nine Bodies Grid */
.nine-bodies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.body-card {
    background: var(--gradient-card);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--light-gray);
}

.body-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.body-card:hover::before {
    opacity: 0.05;
}

.body-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px var(--shadow-heavy);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.card-number {
    background: var(--gradient-primary);
    color: var(--deep-blue);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 1rem;
    box-shadow: 0 4px 15px var(--shadow);
}

.card-header h3 {
    color: var(--deep-blue);
    font-size: 1.5rem;
    margin: 0;
    font-family: 'Cinzel', serif;
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 2px solid var(--primary-gold);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.highlight-box h4 {
    color: var(--dark-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.highlight-box p {
    position: relative;
    z-index: 2;
    margin: 0;
}

/* Planetary Associations */
.planetary-associations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.planet-card {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.planet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.planet-card:hover::before {
    opacity: 0.1;
}

.planet-card:hover {
    transform: translateY(-5px) rotate(2deg);
    box-shadow: 0 15px 35px var(--shadow-heavy);
    border-color: var(--primary-gold);
}

.planet-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 1rem;
    font-style: normal;
    position: relative;
    z-index: 2;
}

.planet-card h4 {
    color: var(--deep-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.planet-card p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Transformation Section */
.transformation-section {
    background: linear-gradient(135deg, rgba(106, 76, 147, 0.1), rgba(139, 107, 177, 0.05));
    border: 2px solid var(--purple);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.transformation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(106, 76, 147, 0.1) 0%, transparent 50%);
    animation: gentle-pulse 4s ease-in-out infinite;
}

@keyframes gentle-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.transformation-section h3 {
    color: var(--purple);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.transformation-section p {
    position: relative;
    z-index: 2;
}

/* Thoth Representations */
.thoth-representations {
    margin: 3rem 0;
}

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

.representation-card {
    background: var(--gradient-card);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.representation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--emerald), var(--purple));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.representation-card:hover::before {
    opacity: 0.05;
}

.representation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px var(--shadow-heavy);
    border-color: var(--emerald);
}

.icon-container {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px var(--shadow);
    position: relative;
    z-index: 2;
}

.icon-container i {
    font-size: 2rem;
    color: var(--deep-blue);
}

.representation-card h4 {
    color: var(--deep-blue);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.representation-card p {
    position: relative;
    z-index: 2;
    margin: 0;
}

/* Akh Transformation */
.akh-transformation {
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.1), rgba(45, 106, 79, 0.05));
    border: 2px solid var(--emerald);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.akh-transformation::before {
    content: '★';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: var(--primary-gold);
    opacity: 0.3;
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.akh-transformation h3 {
    color: var(--emerald);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.akh-transformation p {
    position: relative;
    z-index: 2;
}

/* Goddess Section */
.goddess-section {
    background: linear-gradient(135deg, rgba(155, 34, 38, 0.1), rgba(155, 34, 38, 0.05));
    border: 2px solid var(--crimson);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.goddess-section::before {
    content: '☽';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: var(--primary-gold);
    opacity: 0.3;
    animation: moon-phase 4s ease-in-out infinite;
}

@keyframes moon-phase {
    0% { content: '☽'; }
    25% { content: '◐'; }
    50% { content: '○'; }
    75% { content: '◑'; }
    100% { content: '☽'; }
}

.goddess-section h3 {
    color: var(--crimson);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.goddess-section p {
    position: relative;
    z-index: 2;
}

/* Parameters List */
.parameters-list {
    margin: 2rem 0;
}

.parameter-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--gradient-card);
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-gold);
}

.parameter-item:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 35px var(--shadow-heavy);
}

.parameter-number {
    background: var(--gradient-primary);
    color: var(--deep-blue);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin-right: 2rem;
    box-shadow: 0 4px 15px var(--shadow);
    flex-shrink: 0;
}

.parameter-content h4 {
    color: var(--deep-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
}

.parameter-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
}

/* Shaiva Example */
.shaiva-example {
    background: linear-gradient(135deg, rgba(106, 76, 147, 0.1), rgba(139, 107, 177, 0.05));
    border: 2px solid var(--light-purple);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.shaiva-example::before {
    content: '🕉';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    opacity: 0.3;
    animation: om-glow 3s ease-in-out infinite;
}

@keyframes om-glow {
    0%, 100% { opacity: 0.3; text-shadow: none; }
    50% { opacity: 0.6; text-shadow: 0 0 10px rgba(106, 76, 147, 0.5); }
}

.shaiva-example h3 {
    color: var(--light-purple);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.shaiva-example p {
    position: relative;
    z-index: 2;
}

/* Maria Mediation */
.maria-mediation {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 228, 170, 0.05));
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.maria-mediation::before {
    content: '♱';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: var(--primary-gold);
    opacity: 0.3;
    animation: cross-blessing 4s ease-in-out infinite;
}

@keyframes cross-blessing {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

.maria-mediation h3 {
    color: var(--dark-gold);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.maria-mediation p {
    position: relative;
    z-index: 2;
}

/* Responsibility Section */
.responsibility-section {
    background: linear-gradient(135deg, rgba(155, 34, 38, 0.1), rgba(155, 34, 38, 0.05));
    border: 2px solid var(--crimson);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.responsibility-section::before {
    content: '⚖';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: var(--primary-gold);
    opacity: 0.3;
    animation: scale-balance 3s ease-in-out infinite;
}

@keyframes scale-balance {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.responsibility-section h3 {
    color: var(--crimson);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.responsibility-section p {
    position: relative;
    z-index: 2;
}

/* Pentecoste Section */
.pentecoste-section {
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.1), rgba(45, 106, 79, 0.05));
    border: 2px solid var(--emerald);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.pentecoste-section::before {
    content: '🕊';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    opacity: 0.3;
    animation: dove-fly 4s ease-in-out infinite;
}

@keyframes dove-fly {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-5px) rotate(5deg); }
}

.pentecoste-section h3 {
    color: var(--emerald);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.pentecoste-section p {
    position: relative;
    z-index: 2;
}

/* Hestos Section */
.hestos-section {
    background: linear-gradient(135deg, rgba(106, 76, 147, 0.1), rgba(139, 107, 177, 0.05));
    border: 2px solid var(--purple);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.hestos-section::before {
    content: '⚔';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: var(--primary-gold);
    opacity: 0.3;
    animation: sword-gleam 3s ease-in-out infinite;
}

@keyframes sword-gleam {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; text-shadow: 0 0 15px rgba(212, 175, 55, 0.8); }
}

.hestos-section h3 {
    color: var(--purple);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.hestos-section p {
    position: relative;
    z-index: 2;
}

/* Women Traditions */
.women-traditions {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 228, 170, 0.05));
    border: 2px solid var(--secondary-gold);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.women-traditions::before {
    content: '🌸';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    opacity: 0.3;
    animation: blossom 4s ease-in-out infinite;
}

@keyframes blossom {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(90deg); }
    50% { transform: scale(1) rotate(180deg); }
    75% { transform: scale(1.1) rotate(270deg); }
}

.women-traditions h3 {
    color: var(--dark-gold);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.women-traditions p {
    position: relative;
    z-index: 2;
}

/* Final Guardian */
.final-guardian {
    background: linear-gradient(135deg, rgba(26, 34, 56, 0.1), rgba(42, 52, 73, 0.05));
    border: 2px solid var(--deep-blue);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.final-guardian::before {
    content: '👁';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    opacity: 0.3;
    animation: watchful-eye 5s ease-in-out infinite;
}

@keyframes watchful-eye {
    0%, 90%, 100% { opacity: 0.3; }
    5%, 85% { opacity: 0.1; }
    10%, 80% { opacity: 0.7; }
}

.final-guardian h3 {
    color: var(--deep-blue);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.final-guardian p {
    position: relative;
    z-index: 2;
}

/* Contact Section */
.contact-card {
    background: var(--gradient-card);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-heavy);
    text-align: center;
    margin: 2rem 0;
    border: 2px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: contact-glow 4s ease-in-out infinite;
}

@keyframes contact-glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.author-info {
    position: relative;
    z-index: 2;
}

.author-info h3 {
    color: var(--deep-blue);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-family: 'Cinzel', serif;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--gradient-card);
    border: 2px solid var(--primary-gold);
    border-radius: 50px;
    color: var(--deep-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px var(--shadow);
    position: relative;
    overflow: hidden;
}

.contact-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.contact-link:hover::before {
    left: 0;
}

.contact-link:hover {
    color: var(--deep-blue);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-heavy);
}

.contact-link.instagram:hover {
    border-color: #E4405F;
}

.contact-link.youtube:hover {
    border-color: #FF0000;
}

.contact-link.telegram:hover {
    border-color: #0088cc;
}

.contact-link.website:hover {
    border-color: var(--emerald);
}

.contact-link i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--deep-blue);
    color: var(--ivory);
    padding: 2rem 0;
    text-align: center;
    position: relative;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-gold);
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-primary);
    color: var(--deep-blue);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 8px 25px var(--shadow-heavy);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px var(--shadow-heavy);
}

/* Utility Classes */
.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--deep-blue);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding: 2rem 0;
        border-top: 2px solid var(--primary-gold);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .content-card {
        padding: 2rem;
    }
    
    .nine-bodies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .planetary-associations {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .representations-grid {
        grid-template-columns: 1fr;
    }
    
    .parameter-item {
        flex-direction: column;
        text-align: center;
    }
    
    .parameter-number {
        margin-bottom: 1rem;
    }
    
    .contact-links {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-link {
        width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .planetary-associations {
        grid-template-columns: 1fr;
    }
    
    .body-card {
        padding: 1.5rem;
    }
    
    .planet-card {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .scroll-to-top,
    .hero-bg-animation,
    .cta-button {
        display: none;
    }
    
    .hero {
        height: auto;
        padding: 2rem 0;
    }
    
    .main-content {
        margin-top: 0;
    }
    
    .content-card {
        box-shadow: none;
        border: 1px solid var(--medium-gray);
    }
    
    .highlight {
        background: none;
        border: 1px solid var(--primary-gold);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States for Better Accessibility */
.nav-link:focus,
.cta-button:focus,
.contact-link:focus,
.scroll-to-top:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .highlight {
        background: yellow;
        color: black;
    }
    
    .content-card {
        border: 2px solid black;
    }
}