/* ============================================
   ROOT VARIABLES - TETRAD COLOR SCHEME
   ============================================ */
:root {
    /* Tetrad Color Palette */
    --primary-color: #2E5BFF;
    --primary-dark: #1E3A99;
    --primary-light: #5A7FFF;
    
    --secondary-color: #FF2E97;
    --secondary-dark: #CC2578;
    --secondary-light: #FF5AAD;
    
    --tertiary-color: #FFB82E;
    --tertiary-dark: #CC9325;
    --tertiary-light: #FFC85A;
    
    --quaternary-color: #2EFFB8;
    --quaternary-dark: #25CC93;
    --quaternary-light: #5AFFC8;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --black: #0A0A0A;
    --gray-light: #F5F7FA;
    --gray-medium: #B8C5D6;
    --gray-dark: #4A5568;
    --text-primary: #1A202C;
    --text-secondary: #4A5568;
    --text-light: #718096;
    
    /* Gradient Backgrounds */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--tertiary-color) 0%, var(--quaternary-color) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(46, 91, 255, 0.85) 0%, rgba(255, 46, 151, 0.85) 100%);
    --gradient-dark: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 32, 44, 0.8) 100%);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.24);
    
    /* Transitions */
    --transition-base: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Source Sans Pro', sans-serif;
    
    /* Z-index */
    --z-header: 1000;
    --z-overlay: 900;
    --z-modal: 1100;
}

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

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
}

h5 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
    font-size: 1.125rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition-base);
}

a:hover {
    color: var(--primary-dark);
}

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

/* ============================================
   GLOBAL BUTTON STYLES
   ============================================ */
.btn,
.button,
button,
input[type='submit'] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before,
.button::before,
button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -1;
    transition: var(--transition-smooth);
    opacity: 0;
}

.btn:hover::before,
.button:hover::before,
button:hover::before {
    opacity: 1;
}

.btn-interactive,
.button.is-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-interactive:hover,
.button.is-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.button.is-outlined {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.button.is-outlined:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-4px) scale(1.02);
}

.button.is-large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

.button.is-fullwidth {
    width: 100%;
}

/* Read More Links */
.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition-base);
    position: relative;
}

.read-more-link::after {
    content: '→';
    transition: var(--transition-base);
}

.read-more-link:hover {
    color: var(--secondary-color);
    gap: 1rem;
}

.read-more-link:hover::after {
    transform: translateX(5px);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-header);
    transition: var(--transition-base);
}

.navbar {
    background: #1A202C !important;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

.navbar-brand .logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-item {
    color: #fff !important;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.75rem 1.25rem;
    transition: var(--transition-base);
    position: relative;
}

.navbar-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    transition: var(--transition-base);
}

.navbar-item:hover::after {
    width: 80%;
}

.navbar-item.cta-button {
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 0.75rem 1.5rem;
    margin-left: 1rem;
}

.navbar-item.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.navbar-item.cta-button::after {
    display: none;
}

.navbar-burger {
    color: var(--primary-color);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.parallax-section .parallax-background {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 2;
}

.hero-body {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
}

.hero-title {
    color: var(--white) !important;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    color: var(--white) !important;
    font-size: 1.5rem;
    font-weight: 400;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 1.2s ease-out;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease-out;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    display: block;
    width: 30px;
    height: 30px;
    border-left: 3px solid var(--white);
    border-bottom: 3px solid var(--white);
    transform: rotate(-45deg);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section {
    padding: var(--spacing-xl) var(--spacing-md);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    font-weight: 400;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    z-index: 1;
}

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

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    background: var(--gray-light);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.service-card .card-image {
    width: 100%;
    overflow: hidden;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .card-image figure {
    margin: 0;
    width: 100%;
    height: 100%;
}

.service-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .card-image img {
    transform: scale(1.1);
}

.service-card .card-content {
    padding: var(--spacing-md);
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card .title {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.75rem;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

/* ============================================
   METHODOLOGY SECTION
   ============================================ */
.methodology-section {
    position: relative;
    color: var(--white);
}

.methodology-section .parallax-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.methodology-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    transition: var(--transition-smooth);
    position: relative;
}

.methodology-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.methodology-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    box-shadow: var(--shadow-lg);
}

.icon-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.methodology-card h3 {
    color: var(--white);
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.methodology-card p {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.8;
}

/* ============================================
   CUSTOMER STORIES SECTION
   ============================================ */
.customer-stories-section {
    background: var(--white);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.testimonial-card .card-image {
    width: 100%;
    overflow: hidden;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card .card-image figure {
    margin: 0;
    width: 100%;
    height: 100%;
}

.testimonial-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.testimonial-card:hover .card-image img {
    transform: scale(1.1) rotate(2deg);
}

.testimonial-card .card-content {
    padding: var(--spacing-md);
    text-align: center;
}

.testimonial-card .title {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

.testimonial-location {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.rating {
    color: var(--tertiary-color);
    font-size: 1.5rem;
    letter-spacing: 0.25rem;
}

/* ============================================
   HISTORY SECTION
   ============================================ */
.history-section {
    background: var(--gray-light);
}

.timeline-wrapper {
    padding: var(--spacing-lg) 0;
}

.timeline-wrapper .columns {
    margin-bottom: var(--spacing-xl);
}

.timeline-wrapper .columns:last-child {
    margin-bottom: 0;
}

.timeline-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.timeline-wrapper img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.timeline-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-md);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    display: block;
}

.timeline-content h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.125rem;
}

/* ============================================
   INNOVATION SECTION
   ============================================ */
.innovation-section {
    position: relative;
    color: var(--white);
}

.innovation-section .parallax-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.innovation-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    transition: var(--transition-smooth);
}

.innovation-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.innovation-card h3 {
    margin-bottom: var(--spacing-sm);
}

.innovation-card p {
    line-height: 1.8;
}

/* ============================================
   CLIENTELE SECTION
   ============================================ */
.clientele-section {
    background: var(--white);
}

.clientele-stat {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-bounce);
}

.clientele-stat:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0;
}

.clientele-description {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    border-left: 6px solid var(--primary-color);
}

.clientele-description p {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

/* ============================================
   RESEARCH SECTION
   ============================================ */
.research-section {
    background: var(--gray-light);
}

.research-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-lg);
    transition: var(--transition-smooth);
}

.research-content:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.research-content img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.research-content:hover img {
    transform: scale(1.05);
}

.research-text {
    padding: var(--spacing-lg);
}

.research-text h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.research-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.125rem;
}

/* ============================================
   PRESS SECTION
   ============================================ */
.press-section {
    background: var(--white);
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.press-item {
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.press-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.press-logo {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    border-radius: var(--radius-md);
}

.press-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    margin: 0 auto;
}

.press-item:hover .press-logo img {
    transform: scale(1.1);
}

.press-item .title {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
}

.press-item p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0;
}

/* ============================================
   COMMUNITY SECTION
   ============================================ */
.community-section {
    position: relative;
    color: var(--white);
}

.community-section .parallax-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.community-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
}

.community-content p {
    font-size: 1.25rem;
    line-height: 1.9;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.community-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.feature-item {
    text-align: center;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature-item h4 {
    margin-bottom: var(--spacing-sm);
}

.feature-item p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* ============================================
   RESOURCES SECTION
   ============================================ */
.resources-section {
    background: var(--gray-light);
}

.resource-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.resource-card h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.resource-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--white);
    padding-bottom: var(--spacing-xl);
}

.contact-form-wrapper {
    background: var(--gray-light);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
}

.contact-form .field {
    margin-bottom: var(--spacing-md);
}

.contact-form .label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    font-size: 1.125rem;
}

.contact-form .input,
.contact-form .textarea,
.contact-form .select select {
    border: 2px solid var(--gray-medium);
    border-radius: var(--radius-md);
    padding: 1rem;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition-base);
    background: var(--white);
}

.contact-form .input:focus,
.contact-form .textarea:focus,
.contact-form .select select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 91, 255, 0.1);
    outline: none;
}

.contact-form .select {
    width: 100%;
}

.contact-form .select select {
    width: 100%;
}

.contact-info-section {
    margin-top: var(--spacing-xl);
}

.contact-info-card {
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-info-card .title {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
}

.contact-info-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0;
}

.contact-info-card a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.contact-info-card a:hover {
    color: var(--secondary-color);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gradient-dark);
    color: rgba(255, 255, 255, 0.9);
    padding: var(--spacing-xl) var(--spacing-md) var(--spacing-md);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.footer-subtitle {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    transition: var(--transition-base);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--quaternary-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    font-weight: 600;
    transition: var(--transition-base);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    text-align: center;
    display: block;
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.footer-bottom {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.footer-bottom a {
    color: var(--quaternary-color);
    text-decoration: underline;
}

.footer-bottom a:hover {
    color: var(--white);
}

/* ============================================
   SUCCESS PAGE
   ============================================ */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--gradient-primary);
}

.success-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    max-width: 600px;
    box-shadow: var(--shadow-xl);
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    font-size: 3rem;
}

.success-content h1 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.success-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

/* ============================================
   PRIVACY & TERMS PAGES
   ============================================ */
.legal-page {
    padding-top: 120px;
    padding-bottom: var(--spacing-xl);
    background: var(--gray-light);
}

.legal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.legal-content h2 {
    color: var(--primary-color);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    font-size: 2rem;
}

.legal-content h3 {
    color: var(--text-primary);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

.legal-content p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
}

.legal-content ul,
.legal-content ol {
    margin-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}

.legal-content li {
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media screen and (max-width: 1024px) {
    .section {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .button {
        width: 100%;
        max-width: 300px;
    }
    
    .timeline-year {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .section {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .navbar-brand .logo-text {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .columns.is-multiline .column {
        width: 100% !important;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .press-grid {
        grid-template-columns: 1fr;
    }
    
    .community-features {
        grid-template-columns: 1fr;
    }
    
    .timeline-wrapper .columns {
        flex-direction: column;
    }
    
    .timeline-content {
        order: 2;
    }
    
    .timeline-wrapper img {
        order: 1;
        margin-bottom: var(--spacing-md);
    }
    
    .contact-form-wrapper {
        padding: var(--spacing-md);
    }
}

@media screen and (max-width: 480px) {
    .btn,
    .button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .button.is-large {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        gap: var(--spacing-sm);
    }
    
    .methodology-icon,
    .success-icon {
        width: 60px;
        height: 60px;
    }
    
    .icon-number {
        font-size: 2rem;
    }
    
    .social-links {
        flex-direction: column;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.has-text-white {
    color: var(--white) !important;
}

.has-text-centered {
    text-align: center !important;
}

.is-fullwidth {
    width: 100%;
}

.is-rounded {
    border-radius: var(--radius-xl) !important;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll Reveal Integration */
[data-sr] {
    opacity: 0;
    transition: var(--transition-smooth);
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .header,
    .navbar,
    .footer,
    .scroll-indicator,
    .btn,
    .button {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
    }
}