/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #F4F4F4;
    color: #1B1F3B;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(27, 31, 59, 0.96);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.nav-logo .logo {
    height: 210px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-logo .logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 45px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 10px 0;
    position: relative;
}

.nav-link:hover {
    color: #3EF4E2;
    transform: translateY(-1px);
}

.nav-link.active {
    color: #3EF4E2;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #3EF4E2;
    border-radius: 1px;
}

/* Hero Sections */
.hero,
.about-hero,
.pricing-hero,
.contact-hero {
    background: linear-gradient(135deg, #1B1F3B 0%, #2A2F5F 100%);
    color: white;
    padding: 390px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before,
.about-hero::before,
.pricing-hero::before,
.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=2072&q=80') center/cover;
    opacity: 0.03;
    z-index: 0;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #3EF4E2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Standardized Page Title */
.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-align: center;
    background: linear-gradient(45deg, #ffffff, #3EF4E2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #3EF4E2, #2DD4C7);
    color: #1B1F3B;
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(62, 244, 226, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 50px rgba(62, 244, 226, 0.5);
    background: linear-gradient(45deg, #2DD4C7, #3EF4E2);
}

.button-secondary {
    display: inline-block;
    background: transparent;
    color: #1B1F3B;
    padding: 18px 36px;
    text-decoration: none;
    border: 2px solid #1B1F3B;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.button-secondary:hover {
    background: #1B1F3B;
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(27, 31, 59, 0.3);
}

/* Section Styles */
section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1B1F3B;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
}

/* Services Section */
.services {
    background: white;
    padding: 30px 0 120px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: #F8F9FA;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #E9ECEF;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(62, 244, 226, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-color: #3EF4E2;
    background: white;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1B1F3B;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing-preview,
.pricing-plans {
    background: #F8F9FA;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 20px;
}

.pricing-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border-color: #3EF4E2;
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(62, 244, 226, 0.15);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #3EF4E2, #2DD4C7);
    color: #1B1F3B;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(62, 244, 226, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1B1F3B;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1B1F3B;
    margin-bottom: 1rem;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.plan-description {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
    flex-grow: 1;
}

.features li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
}

.features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3EF4E2;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Why Elacris / Features Grid */
.why-elacris {
    background: white;
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(62, 244, 226, 0.05);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1B1F3B;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* How It Works */
.how-it-works {
    background: #F8F9FA;
    padding: 100px 0;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.7);
}

.step-number {
    display: inline-block;
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #3EF4E2, #2DD4C7);
    color: #1B1F3B;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 70px;
    margin-bottom: 1.5rem;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1B1F3B;
}

.step p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About Page Specific Styles */
.our-story {
    background: white;
    padding: 120px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1B1F3B;
}

.story-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.mission-values {
    background: #F8F9FA;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1B1F3B;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Pricing Page Specific Styles */
.addons-section {
    background: white;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.addon-card {
    background: #F8F9FA;
    padding: 30px 25px;
    border-radius: 15px;
    border: 1px solid #E9ECEF;
    transition: all 0.3s ease;
}

.addon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #3EF4E2;
}

.addon-price {
    font-size: 1.4rem;
    font-weight: 600;
    color: #3EF4E2;
    margin-bottom: 1rem;
}

.addon-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1B1F3B;
}

.addon-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.addon-card ul {
    list-style: none;
}

.addon-card li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
}

.addon-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3EF4E2;
    font-weight: bold;
}

/* Feature Comparison Table */
.feature-comparison {
    background: white;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin: 0 -20px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 800px;
}

.comparison-table th {
    background: #F8F9FA;
    padding: 25px 20px;
    font-weight: 600;
    color: #1B1F3B;
    border-bottom: 2px solid #E9ECEF;
    text-align: center;
    font-size: 1.1rem;
}

.comparison-table .feature-col {
    text-align: left;
    width: 35%;
    padding-left: 30px !important;
}

.comparison-table .plan-col {
    width: 21.66%;
}

.comparison-table td {
    padding: 18px 20px;
    text-align: center;
    border-bottom: 1px solid #E9ECEF;
    transition: background-color 0.2s ease;
}

.comparison-table tbody tr:hover {
    background-color: rgba(62, 244, 226, 0.02);
}

.feature-name {
    text-align: left !important;
    font-weight: 500;
    color: #1B1F3B;
}

.feature-check {
    color: #3EF4E2;
    font-weight: bold;
    font-size: 1.2rem;
}

.feature-none {
    color: #ccc;
    font-size: 1.2rem;
}

.feature-value {
    color: #666;
    font-weight: 500;
}

/* Contact Page Specific Styles */
.contact-method {
    background: white;
    padding: 100px 0;
}

.contact-simple {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-simple h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1B1F3B;
}

.contact-main-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1B1F3B;
}

.contact-main-text a {
    color: #3EF4E2;
    text-decoration: none;
}

.contact-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1B1F3B;
}

.contact-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 2rem;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1B1F3B;
}

.benefit-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.contact-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.email-cta {
    background: #F8F9FA;
    text-align: center;
}

.email-cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1B1F3B;
}

.email-cta-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.email-address {
    margin-top: 1.5rem !important;
    font-size: 1rem;
    color: #666;
}

.email-address a {
    color: #3EF4E2;
    text-decoration: none;
    font-weight: 500;
}

.what-to-include {
    background: white;
}

.include-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
}

.include-item {
    padding: 30px 25px;
    background: #F8F9FA;
    border-radius: 15px;
    border: 1px solid #E9ECEF;
}

.include-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1B1F3B;
}

.include-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* FAQ Styles */
.faq-section,
.pricing-faq {
    background: #F8F9FA;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #1B1F3B;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Sections */
.cta-section,
.final-cta {
    background: linear-gradient(135deg, #1B1F3B 0%, #2A2F5F 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-note {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 0 !important;
    margin-top: 2rem;
    line-height: 1.5;
}

.cta-note a {
    color: #3EF4E2;
    text-decoration: none;
    font-weight: 500;
}

.cta-note a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #1B1F3B;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3EF4E2;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-logo .logo {
        height: 130px;
    }
    
    .navbar {
        padding: 25px 0;
    }
    
    .nav-container {
        gap: 8px;
    }
    
    .hero,
    .about-hero,
    .pricing-hero,
    .contact-hero {
        padding: 300px 0 100px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        gap: 25px;
    }
    
    .pricing-grid-two {
        gap: 40px;
    }
    
    .services {
        padding: 30px 0 100px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 20px 0;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 8px;
        padding: 0 15px;
    }
    
    .nav-logo .logo {
        height: 100px;
    }
    
    .nav-menu {
        gap: 25px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero,
    .about-hero,
    .pricing-hero,
    .contact-hero {
        padding: 260px 0 80px;
    }
    
    .hero-title,
    .page-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid,
    .features-grid,
    .steps-container,
    .pricing-grid,
    .pricing-grid-two,
    .addons-grid,
    .values-grid,
    .include-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .story-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    section {
        padding: 80px 0;
    }
    
    .services {
        padding: 30px 0 80px;
    }
    
    .why-elacris,
    .how-it-works {
        padding: 80px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title,
    .page-title {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .pricing-card,
    .service-card,
    .value-card {
        padding: 30px 20px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
}

/* Additional utility classes */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mt-4 {
    margin-top: 2rem;
}