/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Colors */
    --bg-primary: #07090e;
    --bg-secondary: #0d111a;
    --bg-tertiary: #131927;
    
    --color-emerald: #0d9488;
    --color-emerald-light: #14b8a6;
    --color-emerald-dark: #0f766e;
    
    --color-gold: #d97706;
    --color-gold-light: #f59e0b;
    --color-gold-dark: #b45309;
    
    --text-primary: #f3f4f6;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    
    --border-color: rgba(255, 255, 255, 0.06);
    --border-emerald: rgba(13, 148, 136, 0.25);
    --border-gold: rgba(217, 119, 6, 0.25);
    
    /* Fonts */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    
    /* Effects */
    --glow-emerald: 0 0 30px rgba(13, 148, 136, 0.15);
    --glow-gold: 0 0 30px rgba(217, 119, 6, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    background-color: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(13, 148, 136, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(217, 119, 6, 0.03) 0%, transparent 40%);
    background-attachment: fixed;
}

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

a {
    color: inherit;
    text-decoration: none;
}

p a {
    color: var(--color-emerald-light);
    text-decoration: underline;
    transition: var(--transition-smooth);
}

p a:hover {
    color: var(--color-gold-light);
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 8rem 0;
}

.grid {
    display: grid;
    gap: 3rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-2-large {
    grid-template-columns: 1.2fr 1.8fr;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.alignment-center {
    align-items: center;
}

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

/* Typography elements */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: -0.01em;
}

/* ==========================================================================
   COMMON COMPONENTS
   ========================================================================== */
.section-header {
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-subtitle {
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--color-gold-light);
    display: inline-block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.header-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-emerald), var(--color-gold));
    margin: 1.5rem auto 0;
}

.header-divider.left-aligned {
    margin-left: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-family: var(--font-sans);
    letter-spacing: 0.02em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-emerald-dark), var(--color-emerald));
    color: white;
    box-shadow: var(--glow-emerald);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-emerald), var(--color-emerald-light));
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(13, 148, 136, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid var(--border-emerald);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(13, 148, 136, 0.1);
    border-color: var(--color-emerald);
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    color: white;
    box-shadow: var(--glow-gold);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(217, 119, 6, 0.3);
}

/* ==========================================================================
   HEADER SECTION
   ========================================================================== */
.main-header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    height: 70px;
    background: rgba(7, 9, 14, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-gold-light);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-btn {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    background: rgba(217, 119, 6, 0.1);
    color: var(--color-gold-light);
    border: 1px solid var(--border-gold);
    transition: var(--transition-smooth);
}

.nav-btn:hover {
    background: var(--color-gold);
    color: white;
    box-shadow: var(--glow-gold);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: calc(var(--header-height) + 2rem);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, rgba(7, 9, 14, 0.2) 0%, var(--bg-primary) 80%),
        linear-gradient(to bottom, transparent, var(--bg-primary));
    pointer-events: none;
    z-index: 1;
}

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

.hero-content {
    max-width: 650px;
}

.hero-badge {
    background: rgba(13, 148, 136, 0.08);
    color: var(--color-emerald-light);
    border: 1px solid var(--border-emerald);
    padding: 0.4rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* Image Frames */
.hero-visual {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    background: var(--bg-secondary);
}

.image-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(225deg, rgba(13, 148, 136, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.premium-image {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 5;
    transition: var(--transition-smooth);
    filter: saturate(0.9) contrast(1.05);
}

.image-frame:hover .premium-image {
    transform: scale(1.03);
    filter: saturate(1.05) contrast(1.1);
}

.frame-border {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.image-frame:hover .frame-border {
    border-color: var(--border-emerald);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 3;
    pointer-events: none;
    opacity: 0.8;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.6s infinite;
}

.scroll-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
}

@keyframes scroll-wheel {
    0% { top: 6px; opacity: 1; }
    50% { top: 16px; opacity: 0; }
    100% { top: 6px; opacity: 1; }
}

/* ==========================================================================
   ENFOQUE SECTION
   ========================================================================== */
.enfoque-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.enfoque-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.enfoque-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.concept-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.concept-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.concept-card:hover {
    border-color: var(--border-emerald);
    transform: translateX(5px);
}

.concept-icon {
    width: 48px;
    height: 48px;
    background: rgba(13, 148, 136, 0.06);
    border: 1px solid var(--border-emerald);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-emerald-light);
}

.concept-icon svg {
    width: 24px;
    height: 24px;
}

.concept-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
    color: white;
}

.concept-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Quote box */
.enfoque-quote-box {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-primary) 100%);
    border-radius: 12px;
    border: 1px solid var(--border-gold);
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--glow-gold);
}

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

.quote-mark {
    font-family: var(--font-serif);
    font-size: 8rem;
    color: rgba(217, 119, 6, 0.08);
    position: absolute;
    top: -4.5rem;
    left: -1rem;
    line-height: 1;
}

.enfoque-quote-box blockquote {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    line-height: 1.45;
    color: var(--text-primary);
    margin-bottom: 2rem;
    position: relative;
}

.enfoque-quote-box cite {
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: var(--color-gold-light);
}

.quote-card-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.05) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    pointer-events: none;
    z-index: 1;
}

/* ==========================================================================
   LAS 7 ALMAS SECTION
   ========================================================================== */
.almas-section {
    position: relative;
}

.almas-grid {
    margin-top: 2rem;
}

.almas-selector {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.alma-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.alma-item:hover {
    border-color: var(--border-emerald);
    background: var(--bg-tertiary);
}

.alma-item.active {
    border-color: var(--color-emerald);
    background: linear-gradient(90deg, rgba(13, 148, 136, 0.08) 0%, var(--bg-tertiary) 100%);
    box-shadow: var(--glow-emerald);
}

.alma-num {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-right: 1.5rem;
    width: 25px;
    transition: var(--transition-smooth);
}

.alma-item:hover .alma-num, .alma-item.active .alma-num {
    color: var(--color-emerald-light);
}

.alma-meta {
    flex-grow: 1;
}

.alma-meta h4 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.15rem;
}

.alma-location {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.alma-arrow {
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateX(-10px);
}

.alma-item:hover .alma-arrow, .alma-item.active .alma-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--color-emerald-light);
}

/* Detail Panel */
.alma-detail-panel {
    background: var(--bg-secondary);
    border: 1px solid var(--border-emerald);
    border-radius: 12px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px;
    box-shadow: var(--glow-emerald);
}

.panel-glow {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.06) 0%, transparent 75%);
    pointer-events: none;
    z-index: 1;
}

.panel-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.panel-img-container {
    width: 100%;
    height: 180px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.panel-decor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.8) contrast(1.1);
}

#alma-content-area {
    animation: fade-in 0.4s ease-out forwards;
}

.detail-title {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.detail-essence {
    font-size: 0.95rem;
    color: var(--color-emerald-light);
    font-weight: 600;
    display: block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-description {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.detail-symptoms {
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--color-emerald);
    padding: 1.25rem 1.5rem;
    border-radius: 0 6px 6px 0;
}

.detail-symptoms h5 {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white;
    margin-bottom: 0.5rem;
}

.detail-symptoms p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   ENEAGRAMA SUFÍ SECTION
   ========================================================================== */
.eneagrama-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.circular-frame {
    border-radius: 50% !important;
    max-width: 450px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
}

.circular-frame .premium-image {
    aspect-ratio: 1 / 1;
}

.frame-border-gold {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
    transition: var(--transition-smooth);
    animation: spin 30s linear infinite;
}

.circular-frame:hover .frame-border-gold {
    border-color: var(--border-gold);
}

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

.eneagrama-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.eneagrama-features {
    list-style: none;
    margin-bottom: 3rem;
}

.eneagrama-features li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-gold-light);
    box-shadow: 0 0 10px var(--color-gold);
    margin-top: 8px;
    flex-shrink: 0;
}

.eneagrama-features li div {
    font-size: 1rem;
    color: var(--text-secondary);
}

.eneagrama-features li strong {
    color: white;
    display: block;
    margin-bottom: 0.25rem;
}

/* CTA Box */
.eneagrama-cta-box {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    padding: 2rem 2.5rem;
    border-radius: 8px;
    position: relative;
}

.eneagrama-cta-box h4 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 0.5rem;
}

.eneagrama-cta-box p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.cta-box-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   BENEFICIOS SECTION
   ========================================================================== */
.beneficio-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 3.5rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.beneficio-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-emerald);
    box-shadow: var(--glow-emerald);
}

.b-card-glow {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.b-icon {
    width: 60px;
    height: 60px;
    background: rgba(13, 148, 136, 0.06);
    border: 1px solid var(--border-emerald);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--color-emerald-light);
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.beneficio-card:hover .b-icon {
    background: var(--color-emerald);
    color: white;
    box-shadow: 0 0 20px rgba(13, 148, 136, 0.4);
}

.b-icon svg {
    width: 28px;
    height: 28px;
}

.beneficio-card h4 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.beneficio-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   CONTACT / REGISTER FORM SECTION
   ========================================================================== */
.contacto-section {
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(217, 119, 6, 0.03) 0%, transparent 50%);
    border-top: 1px solid var(--border-color);
}

.contacto-info p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

.contacto-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.c-detail-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.c-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(217, 119, 6, 0.05);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-light);
}

.c-icon svg {
    width: 20px;
    height: 20px;
}

.c-detail-item span {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Form container */
.contacto-form-container {
    position: relative;
}

.form-glow {
    position: absolute;
    top: -50px;
    left: -50px;
    width: calc(100% + 100px);
    height: calc(100% + 100px);
    background: radial-gradient(circle, rgba(217, 119, 6, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.form-card {
    background: rgba(13, 17, 26, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 3.5rem 3rem;
    box-shadow: var(--glow-gold);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.form-card h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

/* Form Control Elements */
.form-group {
    margin-bottom: 1.75rem;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: white;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    outline: none;
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(217, 119, 6, 0.15);
}

/* Custom select styling */
.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '▼';
    font-size: 0.7rem;
    color: var(--text-muted);
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
}

/* Validation styles */
.form-group.invalid input, .form-group.invalid select {
    border-color: #ef4444;
}

.error-message {
    color: #ef4444;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.35rem;
    display: none;
    position: absolute;
    bottom: -1.25rem;
    left: 0;
}

.form-group.invalid .error-message {
    display: block;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    color: white;
    font-size: 1rem;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    position: relative;
    box-shadow: var(--glow-gold);
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    box-shadow: 0 8px 30px rgba(217, 119, 6, 0.3);
}

/* Button loader state */
.btn-loader {
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: none;
    animation: btn-spin 0.8s linear infinite;
    position: absolute;
}

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

.btn-submit.loading .btn-text {
    visibility: hidden;
}

.btn-submit.loading .btn-loader {
    display: block;
}

/* Success Card */
.form-success-message {
    display: none;
    text-align: center;
    padding: 2rem 1rem;
    animation: fade-in 0.5s ease-out forwards;
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    margin: 0 auto 1.5rem;
}

.success-icon svg {
    width: 32px;
    height: 32px;
}

.form-success-message h4 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 0.5rem;
}

.form-success-message p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 4rem;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    color: white;
    margin-bottom: 1rem;
}

.footer-quote {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

.footer-divider {
    width: 100%;
    max-width: 150px;
    height: 1px;
    background-color: var(--border-color);
    margin: 0 auto 2.5rem;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .section-padding {
        padding: 6rem 0;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .grid-2-large {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .almas-selector {
        order: 2;
    }
    
    .alma-detail-panel {
        order: 1;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions {
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .enfoque-quote-box {
        padding: 3rem 2rem;
    }
    
    .enfoque-quote-box blockquote {
        font-size: 1.4rem;
    }
    
    /* Navigation drawer */
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: rgba(7, 9, 14, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 3rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: 
            transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
            opacity 0.4s ease,
            visibility 0.4s ease;
        z-index: 999;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    /* Menu burger transform */
    .menu-toggle.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .form-card {
        padding: 2.5rem 1.5rem;
    }
}
