/* ===================================
   2451 BRICKELL INSIGHTS - STYLESHEET
   =================================== */

/* CSS Variables / Design System */
:root {
    /* Colors */
    --navy: #003366;
    --navy-dark: #002244;
    --teal: #00A896;
    --teal-light: #00C9B1;
    --teal-dark: #008577;
    --gold: #D4A373;
    --gold-light: #E5C4A1;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --dark-gray: #666666;
    --charcoal: #333333;
    --dark-overlay: rgba(0, 0, 0, 0.6);
    --light-overlay: rgba(255, 255, 255, 0.95);
    
    /* Gradients */
    --gradient-bay: linear-gradient(135deg, #003366 0%, #006994 50%, #00A896 100%);
    --gradient-sunset: linear-gradient(180deg, #FF6B6B 0%, #FFA500 30%, #006994 70%, #003366 100%);
    --gradient-ocean: linear-gradient(180deg, #87CEEB 0%, #006994 50%, #003366 100%);
    --gradient-gold: linear-gradient(135deg, #D4A373 0%, #E5C4A1 100%);
    
    /* Typography */
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(0, 168, 150, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Container */
    --container-max: 1200px;
    --container-padding: 1.5rem;
}

/* 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-weight: 400;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

/* ===================================
   LANDING PAGE STYLES
   =================================== */

.landing-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

/* Animated Background */
.landing-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--gradient-bay);
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(0, 168, 150, 0.3) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(212, 163, 115, 0.2) 0%, transparent 50%);
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
    background-size: 50% 100%;
    animation: wave 20s linear infinite;
}

.wave-2 {
    opacity: 0.5;
    animation-delay: -5s;
    animation-duration: 15s;
}

.wave-3 {
    opacity: 0.3;
    animation-delay: -10s;
    animation-duration: 25s;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Landing Container */
.landing-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl) var(--container-padding);
    min-height: 100vh;
}

/* Landing Header */
.landing-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    position: relative;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.logo-icon {
    width: 80px;
    height: 80px;
    background: var(--light-overlay);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.logo-icon svg {
    width: 48px;
    height: 48px;
    color: var(--navy);
}

.logo-text {
    font-size: var(--text-4xl);
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.tagline {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Language Toggle */
.lang-toggle {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: var(--text-sm);
    font-weight: 500;
    transition: background var(--transition-fast);
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lang-option {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}

.lang-option.active {
    opacity: 1;
}

.lang-divider {
    opacity: 0.4;
}

/* Path Selection */
.path-selection {
    width: 100%;
    max-width: 900px;
    margin-bottom: var(--space-3xl);
}

.section-title {
    text-align: center;
    font-size: var(--text-2xl);
    color: var(--white);
    margin-bottom: var(--space-xl);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.path-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

/* Path Cards */
.path-card {
    background: var(--light-overlay);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    position: relative;
    overflow: hidden;
}

.path-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--teal);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.path-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.path-card:hover::before {
    transform: scaleX(1);
}

.owner-card::before {
    background: var(--teal);
}

.investor-card::before {
    background: var(--gold);
}

.card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-lg);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.owner-card .card-icon {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
}

.investor-card .card-icon {
    background: var(--gradient-gold);
}

.card-icon svg {
    width: 36px;
    height: 36px;
    color: var(--white);
}

.card-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-md);
    color: var(--navy);
}

.card-description {
    font-size: var(--text-base);
    color: var(--dark-gray);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    font-size: var(--text-base);
    transition: gap var(--transition-fast);
}

.owner-card .card-cta {
    color: var(--teal);
}

.investor-card .card-cta {
    color: var(--gold);
}

.path-card:hover .card-cta {
    gap: var(--space-md);
}

.card-cta svg {
    width: 20px;
    height: 20px;
}

/* Stats Preview */
.stats-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    padding: var(--space-lg) var(--space-2xl);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

/* Landing Footer */
.landing-footer {
    padding: var(--space-xl) var(--container-padding);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.footer-content {
    max-width: var(--container-max);
    margin: 0 auto;
    text-align: center;
}

.disclaimer {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.9);
}

.footer-links a:hover {
    color: var(--teal-light);
}

.footer-divider {
    opacity: 0.4;
}

/* ===================================
   PASSWORD MODAL
   =================================== */

.password-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 51, 102, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: var(--space-xl);
}

.password-modal.hidden {
    display: none;
}

.password-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    width: 100%;
    max-width: 420px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.password-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    background: var(--gradient-bay);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.password-box h2 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
}

.password-box p {
    color: var(--dark-gray);
    font-size: var(--text-sm);
    margin-bottom: var(--space-lg);
}

.password-input-group {
    position: relative;
    margin-bottom: var(--space-lg);
}

.password-input {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    transition: border-color var(--transition-fast);
}

.password-input:focus {
    outline: none;
    border-color: var(--teal);
}

.password-input.error {
    border-color: #e74c3c;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

.password-error {
    color: #e74c3c;
    font-size: var(--text-sm);
    margin-top: var(--space-sm);
    display: none;
}

.password-error.visible {
    display: block;
}

.password-submit {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: var(--teal);
    color: var(--white);
    font-weight: 600;
    font-size: var(--text-base);
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}

.password-submit:hover {
    background: var(--teal-dark);
}

/* ===================================
   INNER PAGE LAYOUT
   =================================== */

/* Navigation Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-md) var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--text-lg);
    color: var(--navy);
}

.nav-logo svg {
    width: 28px;
    height: 28px;
    color: var(--teal);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--dark-gray);
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--teal);
}

.nav-lang-toggle {
    padding: var(--space-xs) var(--space-md);
    background: var(--light-gray);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--navy);
    transition: transform var(--transition-fast);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(80px + var(--space-3xl)) var(--container-padding) var(--space-3xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 51, 102, 0.7) 0%, rgba(0, 51, 102, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero h1 {
    font-size: var(--text-4xl);
    color: var(--white);
    margin-bottom: var(--space-lg);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--text-base);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.btn-primary {
    background: var(--teal);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Sections */
.section {
    padding: var(--space-4xl) var(--container-padding);
}

.section-alt {
    background: var(--light-gray);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-header h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-md);
}

.section-header p {
    font-size: var(--text-lg);
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Two Column Layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.two-col-reverse {
    direction: rtl;
}

.two-col-reverse > * {
    direction: ltr;
}

/* Content Styling */
.content-block h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-lg);
}

.content-block p {
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.content-block ul {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.content-block li {
    position: relative;
    padding-left: var(--space-xl);
    margin-bottom: var(--space-sm);
}

.content-block li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: var(--radius-full);
}

/* Image Styling */
.img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--gradient-bay);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    gap: var(--space-md);
    border-radius: var(--radius-lg);
}

.img-placeholder svg {
    width: 64px;
    height: 64px;
    opacity: 0.7;
}

.img-placeholder span {
    font-size: var(--text-sm);
    opacity: 0.8;
}

/* Accordion */
.accordion {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.accordion-item {
    border-bottom: 1px solid var(--medium-gray);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--text-lg);
    color: var(--navy);
    text-align: left;
    transition: background var(--transition-fast);
}

.accordion-header:hover {
    background: var(--off-white);
}

.accordion-header svg {
    width: 24px;
    height: 24px;
    color: var(--teal);
    transition: transform var(--transition-base);
}

.accordion-item.active .accordion-header svg {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-body {
    padding: var(--space-lg) var(--space-xl);
    background: var(--off-white);
    line-height: 1.8;
}

/* Data Table */
.data-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.data-table th,
.data-table td {
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    border-bottom: 1px solid var(--medium-gray);
}

.data-table th {
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:hover td {
    background: var(--off-white);
}

.data-table .icon-cell {
    width: 40px;
}

.data-table .icon-cell svg {
    width: 20px;
    height: 20px;
    color: var(--teal);
}

/* Quote Carousel */
.carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--gradient-bay);
    padding: var(--space-3xl);
}

.carousel-track {
    display: flex;
    transition: transform var(--transition-slow);
}

.carousel-slide {
    flex: 0 0 100%;
    text-align: center;
    color: var(--white);
}

.carousel-quote {
    font-size: var(--text-xl);
    font-style: italic;
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.carousel-cite {
    font-size: var(--text-sm);
    opacity: 0.8;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.carousel-dot.active {
    background: var(--white);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.carousel-arrow.prev { left: var(--space-lg); }
.carousel-arrow.next { right: var(--space-lg); }

/* Tabs */
.tabs {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.tab-nav {
    display: flex;
    background: var(--navy);
}

.tab-btn {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
}

.tab-btn:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.tab-btn.active {
    color: var(--white);
    background: var(--teal);
}

.tab-panels {
    background: var(--white);
}

.tab-panel {
    display: none;
    padding: var(--space-xl);
}

.tab-panel.active {
    display: block;
}

/* Timeline */
.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: var(--space-2xl) 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 60px;
    right: 60px;
    height: 4px;
    background: var(--medium-gray);
}

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background: var(--white);
    border: 4px solid var(--teal);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.timeline-step:hover .timeline-icon {
    background: var(--teal);
    transform: scale(1.1);
}

.timeline-icon svg {
    width: 32px;
    height: 32px;
    color: var(--teal);
    transition: color var(--transition-fast);
}

.timeline-step:hover .timeline-icon svg {
    color: var(--white);
}

.timeline-step h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
}

.timeline-step p {
    font-size: var(--text-sm);
    color: var(--dark-gray);
    padding: 0 var(--space-md);
}

/* Metrics Cards */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.metric-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base);
}

.metric-card:hover {
    transform: translateY(-5px);
}

.metric-value {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--teal);
    margin-bottom: var(--space-sm);
}

.metric-value.gold {
    color: var(--gold);
}

.metric-label {
    font-size: var(--text-sm);
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-note {
    font-size: var(--text-xs);
    color: var(--dark-gray);
    margin-top: var(--space-sm);
}

/* Charts */
.chart-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.chart-title {
    font-size: var(--text-lg);
    margin-bottom: var(--space-lg);
    text-align: center;
}

/* Risk List */
.risk-list {
    display: grid;
    gap: var(--space-lg);
}

.risk-item {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-fast);
}

.risk-item:hover {
    box-shadow: var(--shadow-md);
}

.risk-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.risk-icon svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.risk-content h4 {
    font-size: var(--text-base);
    margin-bottom: var(--space-xs);
}

.risk-content p {
    font-size: var(--text-sm);
    color: var(--dark-gray);
}

/* Forms */
.form-section {
    background: var(--gradient-bay);
    padding: var(--space-4xl) var(--container-padding);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-xl);
}

.form-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.form-header h2 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-sm);
}

.form-header p {
    color: var(--dark-gray);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--navy);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: var(--text-base);
    transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--teal);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.form-checkbox input {
    margin-top: 4px;
}

.form-submit {
    width: 100%;
    padding: var(--space-md) var(--space-xl);
    background: var(--teal);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--text-base);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.form-submit:hover {
    background: var(--teal-dark);
}

/* Google Form Embed */
.form-embed {
    width: 100%;
    border: none;
    border-radius: var(--radius-md);
}

/* Map Embed */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Site Footer */
.site-footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: var(--space-3xl) var(--container-padding) var(--space-xl);
}

.footer-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand h3 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--white);
    font-size: var(--text-base);
    margin-bottom: var(--space-lg);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: var(--space-sm);
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--teal-light);
}

.footer-bottom {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-disclaimer {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
    line-height: 1.6;
}

.footer-copyright {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --text-4xl: 2rem;
        --text-5xl: 2.5rem;
    }
    
    .two-col {
        gap: var(--space-xl);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .timeline {
        flex-wrap: wrap;
        gap: var(--space-xl);
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-step {
        flex: 0 0 calc(50% - var(--space-md));
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .path-cards {
        grid-template-columns: 1fr;
    }
    
    .two-col,
    .two-col-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-preview {
        flex-wrap: wrap;
        gap: var(--space-lg);
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - var(--space-md));
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .tab-nav {
        flex-direction: column;
    }
    
    .carousel-arrow {
        display: none;
    }
}

/* Mobile */
@media (max-width: 480px) {
    :root {
        --text-3xl: 1.5rem;
        --text-4xl: 1.75rem;
        --container-padding: 1rem;
    }
    
    .logo-text {
        font-size: var(--text-2xl);
    }
    
    .tagline {
        font-size: var(--text-sm);
    }
    
    .lang-toggle {
        position: relative;
        margin-top: var(--space-md);
    }
    
    .path-card {
        padding: var(--space-lg);
    }
    
    .hero {
        min-height: 60vh;
    }
    
    .hero h1 {
        font-size: var(--text-2xl);
    }
    
    .section {
        padding: var(--space-2xl) var(--container-padding);
    }
    
    .timeline-step {
        flex: 0 0 100%;
    }
    
    .data-table th,
    .data-table td {
        padding: var(--space-sm) var(--space-md);
        font-size: var(--text-sm);
    }
}

/* Animation Utilities */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 100ms; }
.stagger-2 { transition-delay: 200ms; }
.stagger-3 { transition-delay: 300ms; }
.stagger-4 { transition-delay: 400ms; }

/* Counter Animation */
.counter {
    display: inline-block;
}

/* Print Styles */
@media print {
    .site-header,
    .password-modal,
    .carousel-controls,
    .form-section {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: var(--space-xl);
    }
    
    .section {
        break-inside: avoid;
    }
}

