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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --purple: #8b5cf6;
    --pink: #ec4899;
    --green: #10b981;
    --orange: #f59e0b;
    --red: #ef4444;
    --cyan: #06b6d4;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2563eb, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Banner Carousel */
.banner-carousel {
    margin-top: 80px;
    position: relative;
    height: 600px;
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.65), rgba(59, 130, 246, 0.35));
    z-index: 1;
}

.banner-slide.active {
    opacity: 1;
}

.banner-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
}

.banner-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.banner-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.banner-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.banner-dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* Hero Section */
.hero {
    margin-top: 0;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 50%, #ec4899 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/hero-bg.svg') center/cover;
    background-attachment: fixed;
    opacity: 0.2;
    z-index: 0;
    transform: translateZ(0);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #ffffff, #f0f9ff);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #f0f9ff, #ffffff);
}

/* Parallax Effect */
.parallax-section {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

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

/* Features Section */
.features {
    padding: 5rem 2rem;
    background: var(--white);
    position: relative;
}

.features.parallax-section {
    background-image: url('images/parallax-1.svg');
}

.features .parallax-overlay {
    background: rgba(255, 255, 255, 0.92);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2563eb, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.feature-card {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 0.75rem;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    border-top: 4px solid transparent;
}

.feature-card:nth-child(1) {
    border-top-color: #2563eb;
}

.feature-card:nth-child(2) {
    border-top-color: #f59e0b;
}

.feature-card:nth-child(3) {
    border-top-color: #10b981;
}

.feature-card:nth-child(4) {
    border-top-color: #ec4899;
}

.feature-card:nth-child(5) {
    border-top-color: #6366f1;
}

.feature-card:nth-child(6) {
    border-top-color: #06b6d4;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #fce7f3 100%);
    position: relative;
}

.about.parallax-section {
    background-image: url('images/parallax-2.svg');
}

.about .parallax-overlay {
    background: linear-gradient(135deg, rgba(240, 249, 255, 0.88) 0%, rgba(252, 231, 243, 0.88) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stats Section */
.stats {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 50%, #ec4899 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    position: relative;
    z-index: 1;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.stat-item p {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 2rem;
    background: var(--white);
    position: relative;
}

.testimonials.parallax-section {
    background-image: url('images/parallax-3.svg');
}

.testimonials .parallax-overlay {
    background: rgba(255, 255, 255, 0.90);
}

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

.testimonial-card {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 0.75rem;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s;
}

.testimonial-card:nth-child(1) {
    border-left-color: #2563eb;
}

.testimonial-card:nth-child(2) {
    border-left-color: #ec4899;
}

.testimonial-card:nth-child(3) {
    border-left-color: #10b981;
}

.testimonial-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    font-size: 0.875rem;
    color: var(--text-light);
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
}

/* Modules Section */
.modules {
    padding: 5rem 2rem;
    background: var(--white);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.module-card {
    background: var(--bg-light);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.module-image {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.module-body {
    padding: 1.75rem;
}

.module-body h3 {
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.module-features {
    list-style: none;
    padding-left: 0;
    margin: 0 0 1rem;
    color: var(--text-light);
}

.module-features li {
    margin-bottom: 0.4rem;
    display: flex;
    gap: 0.5rem;
}

.module-features li span {
    color: var(--green);
    font-weight: 700;
}

.module-more summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-color);
    list-style: none;
}

.module-more summary::-webkit-details-marker {
    display: none;
}

.module-more p {
    margin-top: 0.75rem;
    color: var(--text-light);
}

/* Action Band */
.action-band {
    padding: 4rem 2rem;
    color: var(--white);
    background: linear-gradient(135deg, #1e40af, #7c3aed, #ec4899);
    position: relative;
    overflow: hidden;
}

.action-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/parallax-bg.svg') center/cover no-repeat;
    opacity: 0.2;
}

.action-band .container {
    position: relative;
    z-index: 1;
}

.band-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    align-items: center;
}

.band-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.band-content p {
    opacity: 0.95;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.pill {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-weight: 600;
}

.band-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
}

/* Pricing */
.pricing {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow);
    border-top: 4px solid transparent;
}

.pricing-card.highlight {
    transform: translateY(-6px);
    border-top-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.pricing-card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.price span {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0 0 1.5rem;
    color: var(--text-light);
}

.pricing-card li {
    margin-bottom: 0.5rem;
}

.pricing-card a {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    border-radius: 0.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

/* Apps & Portals */
.apps {
    padding: 5rem 2rem;
    background: var(--white);
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.app-card {
    background: var(--bg-light);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: var(--shadow);
}

.app-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

/* SMS Pricing */
.sms {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.sms-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.sms-table th,
.sms-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.sms-table th {
    background: #f1f5f9;
    font-weight: 600;
}

/* Website Generator */
.website-generator {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #e0e7ff 0%, #fce7f3 100%);
}

.website-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    display: grid;
    gap: 1rem;
}

.website-form input,
.website-form select {
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.website-form button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
}

/* Support */
.support {
    padding: 5rem 2rem;
    background: var(--white);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.support-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fce7f3 0%, #e0e7ff 100%);
    position: relative;
}

.contact.parallax-section {
    background-image: url('images/parallax-4.svg');
}

.contact .parallax-overlay {
    background: linear-gradient(135deg, rgba(252, 231, 243, 0.88) 0%, rgba(224, 231, 255, 0.88) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #1e40af, #7c3aed);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    list-style: none;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

/* Member Portal Forms */
body.portal-forms {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #1a1a1a;
    color: #e5e5e5;
    min-height: 100vh;
    padding-bottom: 80px;
    -webkit-font-smoothing: antialiased;
}

.portal-forms .header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem;
    padding-top: calc(1rem + env(safe-area-inset-top));
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.portal-forms .header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.portal-forms .header-logo {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem;
}

.portal-forms .header-title {
    font-size: 1.125rem;
    font-weight: 600;
}

.portal-forms .back-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.portal-forms .forms-container {
    padding: 1rem;
}

.portal-forms .form-card {
    background: #2a2a2a;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s;
}

.portal-forms .form-card:active {
    transform: scale(0.98);
}

.portal-forms .form-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #e5e5e5;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.portal-forms .form-icon {
    color: #667eea;
}

.portal-forms .form-description {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.portal-forms .form-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #6b7280;
    font-size: 0.75rem;
}

.portal-forms .empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: #9ca3af;
}

.portal-forms .empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.portal-forms .bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2a2a2a;
    border-top: 1px solid #3a3a3a;
    padding: 0.5rem;
    padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
    display: flex;
    justify-content: space-around;
    z-index: 100;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.portal-forms .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    color: #9ca3af;
    font-size: 0.75rem;
    padding: 0.5rem;
    min-width: 60px;
}

.portal-forms .nav-item.active {
    color: #667eea;
}

.portal-forms .nav-item i {
    font-size: 1.25rem;
}

.portal-form-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out;
    z-index: 1000;
}

.portal-form-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.portal-form-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.portal-form-modal__panel {
    position: relative;
    width: min(92vw, 980px);
    height: min(90vh, 900px);
    background: #101010;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.portal-form-modal__close {
    align-self: flex-end;
    margin: 0.75rem 0.75rem 0;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 0.75rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.portal-form-modal__iframe {
    flex: 1;
    border: none;
    width: 100%;
    background: #fff;
}

body.portal-forms.modal-open {
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.125rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .banner-content h2 {
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 1.125rem;
    }

    /* Disable parallax on mobile for better performance */
    .parallax-section {
        background-attachment: scroll;
    }

    .portal-form-modal__panel {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .portal-form-modal__close {
        margin: 0.5rem;
    }
}
