/* Global Styles */
:root {
    --primary-color: #8b5cf6; /* Vibrant lilac/purple */
    --secondary-color: #f59e0b; /* Vibrant amber/orange */
    --success-color: #10b981; /* Darker green */
    --info-color: #0ea5e9;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-color: #121212; /* Near black */
    --dark-secondary: #1e1e1e; /* Dark grey */
    --dark-tertiary: #2a2a2a; /* Medium dark grey */
    --light-color: #f9fafb;
    --gray-color: #9ca3af;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--dark-color);
}

/* Utility Classes */
.bg-primary-soft {
    background-color: rgba(139, 92, 246, 0.15);
    color: var(--primary-color);
}

.bg-success-soft {
    background-color: rgba(16, 185, 129, 0.15);
    color: var(--success-color);
}

.bg-info-soft {
    background-color: rgba(14, 165, 233, 0.15);
    color: var(--info-color);
}

.bg-dark-tertiary {
    background-color: #181818;
}

.btn {
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #7c3aed; /* Darker lilac */
    border-color: #7c3aed;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-outline-light {
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.section {
    padding: 100px 0;
}

.text-primary {
    color: var(--primary-color) !important;
}

.rounded-4 {
    border-radius: var(--border-radius);
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Navigation */
.navbar {
    padding: 15px 0;
    transition: var(--transition);
    background-color: transparent;
    box-shadow: none;
    position: fixed;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.navbar .container {
    width: auto;
    max-width: 98%;
    transition: var(--transition);
    border-radius: 50px;
    padding: 10px 30px;
    background-color: rgba(18, 18, 18, 0.7);
}

.navbar.scrolled {
    background-color: transparent;
    box-shadow: none;
    padding: 10px 0;
    margin: 15px 0;
}

.navbar.scrolled .navbar-collapse {
    border-radius: var(--border-radius);
}

.navbar.scrolled .container {
    background-color: rgba(18, 18, 18, 0.95);
    border-radius: 50px;
    padding: 10px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    width: auto;
    max-width: 96%;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--light-color);
    margin-left: 15px;
}

.brand-text {
    letter-spacing: -0.5px;
    color: var(--light-color);
}

.nav-link {
    color: var(--light-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-item:last-child {
    margin-right: 15px;
}

.nav-item .btn-primary {
    margin-left: 20px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-color), var(--dark-secondary));
    color: white;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 0;
}

.hero-text-center {
    padding: 0 20px;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 0;
    position: relative;
    top: -50px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.text-animation-container {
    position: relative;
    display: inline-block;
    height: 80px;
    width: 100%;
    overflow: visible;
}

.text-element {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    opacity: 1;
    transition: opacity 0.6s ease-in-out;
    text-align: center;
    display: inline-block;
}

.text-element.hidden {
    opacity: 0;
}

.strike-text {
    color: white;
    font-size: 5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.strike-line {
    position: absolute;
    height: 4px;
    background-color: var(--secondary-color);
    width: 100%;
    left: 0;
    top: 50%;
    z-index: 1;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btns {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 1;
    animation: float 4s ease-in-out infinite;
}

.hero-shape {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 150px;
    background: var(--dark-color);
    border-radius: 100% 100% 0 0;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Section Header */
.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--light-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Cards */
.feature-card {
    background: var(--dark-secondary);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--light-color);
}

.feature-card p {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Benefits Section */
.section.bg-light {
    background-color: var(--dark-tertiary) !important;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
    transition: var(--transition);
    flex-direction: column;
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 0;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.benefit-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--light-color);
}

.benefit-text p {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Pricing Cards */
.pricing-card {
    background: var(--dark-secondary);
    border-radius: var(--border-radius);
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    height: 100%;
    position: relative;
    margin-top: 30px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(245, 158, 11, 0.1));
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured .pricing-header {
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.pricing-card.featured .btn-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border: none;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.early-bird-badge {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    width: auto;
    min-width: 220px;
}

.early-bird-badge .limited-text {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
    display: block;
}

.pricing-header {
    padding: 45px 30px 30px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--light-color);
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
}

.price {
    margin-bottom: 0;
    position: relative;
}

.currency {
    font-size: 1.5rem;
    font-weight: 500;
    vertical-align: top;
    margin-right: 5px;
    color: var(--light-color);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--light-color);
}

.period {
    font-size: 1rem;
    color: var(--gray-color);
}

.original-price {
    margin-top: 5px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    position: relative;
    display: block;
    text-decoration: line-through;
}

.original-price::after {
    content: none;
}

.original-price .currency {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

.original-price .amount {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
}

.original-price .period {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
}

.custom-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.pricing-body {
    padding: 30px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: var(--gray-color);
}

.pricing-features i {
    margin-right: 10px;
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    padding: 50px 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 50px;
    border-radius: var(--border-radius);
    color: white;
}

.cta-card h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Contact Form */
.contact-form {
    background: var(--dark-secondary);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-control, .form-select {
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--dark-tertiary);
    color: var(--light-color);
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(139, 92, 246, 0.25);
    background-color: var(--dark-tertiary);
    color: var(--light-color);
}

.form-control::placeholder, .form-select::placeholder {
    color: var(--gray-color);
}

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    color: var(--gray-color);
}

.form-select option {
    background-color: var(--dark-tertiary);
    color: var(--light-color);
}

textarea.form-control {
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: var(--dark-secondary);
    padding: 80px 0 30px;
    position: relative;
}

.footer-info {
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
    color: var(--light-color);
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--dark-tertiary);
    color: var(--light-color);
    border-radius: 50%;
    margin-right: 10px;
    font-size: 18px;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.footer-links {
    margin-bottom: 30px;
}

.footer-links h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--light-color);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray-color);
    text-decoration: none;
    transition: var(--transition);
}

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

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.newsletter-form button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.copyright {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright p {
    color: var(--gray-color);
    margin-bottom: 0;
}

.copyright a {
    color: var(--gray-color);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .cta-card {
        padding: 30px;
    }
    
    .cta-card h2 {
        font-size: 1.8rem;
    }
    
    .navbar .container,
    .navbar.scrolled .container {
        max-width: 100%;
        padding: 10px 20px;
        margin: 0 5px;
    }
    
    .navbar-collapse.show, 
    .navbar-collapse.collapsing {
        background-color: rgba(18, 18, 18, 0.95);
        border-radius: var(--border-radius);
        padding: 15px;
        margin-top: 15px;
    }
    
    .navbar-brand {
        margin-left: 10px;
    }
    
    .nav-item:last-child {
        margin-right: 10px;
    }
}

@media (max-width: 767.98px) {
    .section {
        padding: 70px 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-text h1 {
        font-size: 2.3rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btns .btn {
        display: block;
        width: 100%;
        margin: 10px 0 !important;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .feature-card, .benefit-item {
        margin-bottom: 20px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .navbar .container,
    .navbar.scrolled .container {
        max-width: 100%;
        padding: 8px 15px;
        margin: 0 5px;
    }
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    color: var(--light-color);
    background-color: transparent;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
}

.navbar-toggler-icon {
    filter: brightness(5);
}

.navbar-collapse {
    transition: var(--transition);
}

/* Example Section */
.example-content {
    padding: 20px;
}

.example-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--light-color);
}

.example-content p {
    color: var(--gray-color);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.example-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.example-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: var(--gray-color);
    font-size: 1.1rem;
}

.example-features i {
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.example-video {
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.example-video:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.example-video .fa-play-circle {
    opacity: 0.8;
    transition: var(--transition);
    cursor: pointer;
}

.example-video:hover .fa-play-circle {
    opacity: 1;
    color: var(--secondary-color);
    transform: scale(1.1);
}

/* Comparison Cards */
.comparison-card {
    background: var(--dark-secondary);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.before-card {
    border-left: 4px solid var(--danger-color);
}

.after-card {
    border-left: 4px solid var(--success-color);
}

.comparison-header {
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--light-color);
    padding-right: 120px;
}

.comparison-body {
    padding: 20px;
    flex-grow: 1;
}

.time-badge {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background-color: var(--danger-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.time-badge.success {
    background-color: var(--success-color);
}

.process-step {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.process-step:last-child {
    border-bottom: none;
    margin-bottom: 10px;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--light-color);
}

.step-content p {
    color: var(--gray-color);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.time-estimate {
    color: var(--danger-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.time-estimate.success {
    color: var(--success-color);
}

.cost-summary {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    color: var(--danger-color);
}

.cost-summary.success {
    color: var(--success-color);
}

/* Savings Card */
.savings-card {
    background: linear-gradient(135deg, var(--dark-secondary), var(--dark-tertiary));
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.savings-card h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--light-color);
}

.savings-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.savings-item {
    padding: 0 20px;
    margin-bottom: 15px;
    flex: 0 0 auto;
}

.savings-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--primary-color), var(--success-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.savings-label {
    color: var(--gray-color);
    font-size: 1rem;
}

.savings-note {
    max-width: 700px;
    margin: 0 auto 25px;
    color: var(--gray-color);
    font-size: 1.1rem;
    font-style: italic;
}

.cost-badge {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger-color);
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 500;
    margin-bottom: 20px;
    display: inline-block;
}

.cost-badge.success {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success-color);
}

.wasted-revenue {
    margin-top: 20px;
    padding: 15px;
    background: rgba(245, 158, 11, 0.1);
    border-left: 4px solid var(--warning-color);
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
}

.wasted-revenue i {
    font-size: 20px;
    margin-right: 15px;
    margin-top: 3px;
}

.wasted-content h4 {
    color: var(--warning-color);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.wasted-content p {
    color: var(--light-color);
    margin-bottom: 0;
}

.wasted-content strong {
    color: var(--warning-color);
    font-weight: 700;
}

.calendly-card {
    background: var(--dark-secondary);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.calendly-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--light-color);
}

.calendly-card p {
    color: var(--gray-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.contact-info p {
    display: inline-block;
    margin: 10px 20px;
    color: var(--light-color);
    font-size: 1.1rem;
}

.contact-info i {
    color: var(--primary-color);
}

.step-divider {
    color: var(--gray-color);
    margin: 25px 0;
    font-size: 1.5rem;
    opacity: 0.5;
    letter-spacing: 3px;
}

/* EU Section Styles */
.eu-text-wrapper {
    position: relative;
    display: inline-block;
    padding: 0 5px;
    margin: 0 5px 0 30px;
}

.eu-text {
    color: #0052B4; /* Europa-flag blue */
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.eu-star-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.eu-star {
    position: absolute;
    color: #FFCC00; /* EU flag star color */
    font-size: 12px;
    animation: float-star 3s ease-in-out infinite;
    text-shadow: 0 0 5px rgba(255, 204, 0, 0.7);
    z-index: 1;
    animation-delay: 0s; /* Make all stars animate at the same time */
    
    /* Position all stars at equal distances from center */
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    margin-top: -6px;
    margin-left: -6px;
}

/* Position 12 stars in a perfect circle, each 30 degrees apart */
.eu-star:nth-child(1) {
    transform: translate(0, -50px); /* 0 degrees */
}

.eu-star:nth-child(2) {
    transform: translate(25px, -43.3px); /* 30 degrees */
}

.eu-star:nth-child(3) {
    transform: translate(43.3px, -25px); /* 60 degrees */
}

.eu-star:nth-child(4) {
    transform: translate(50px, 0); /* 90 degrees */
}

.eu-star:nth-child(5) {
    transform: translate(43.3px, 25px); /* 120 degrees */
}

.eu-star:nth-child(6) {
    transform: translate(25px, 43.3px); /* 150 degrees */
}

.eu-star:nth-child(7) {
    transform: translate(0, 50px); /* 180 degrees */
}

.eu-star:nth-child(8) {
    transform: translate(-25px, 43.3px); /* 210 degrees */
}

.eu-star:nth-child(9) {
    transform: translate(-43.3px, 25px); /* 240 degrees */
}

.eu-star:nth-child(10) {
    transform: translate(-50px, 0); /* 270 degrees */
}

.eu-star:nth-child(11) {
    transform: translate(-43.3px, -25px); /* 300 degrees */
}

.eu-star:nth-child(12) {
    transform: translate(-25px, -43.3px); /* 330 degrees */
}

@keyframes float-star {
    0% {
        filter: brightness(0.7);
        text-shadow: 0 0 3px rgba(255, 204, 0, 0.5);
    }
    50% {
        filter: brightness(1.5);
        text-shadow: 0 0 8px rgba(255, 204, 0, 1);
    }
    100% {
        filter: brightness(0.7);
        text-shadow: 0 0 3px rgba(255, 204, 0, 0.5);
    }
}

/* EU Divider and Points Styling */
.eu-divider {
    text-align: center;
    margin: 30px 0;
    color: #0052B4;
    font-size: 18px;
    letter-spacing: 2px;
}

.eu-point h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--light-color);
    display: flex;
    align-items: center;
}

.eu-point p {
    color: var(--gray-color);
    font-size: 1.05rem;
    line-height: 1.7;
}

.eu-card {
    background: var(--dark-secondary);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
}

.eu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.eu-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--light-color);
    display: flex;
    align-items: center;
}

.eu-card p {
    color: var(--gray-color);
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.eu-commitment {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-top: 10px;
    font-style: italic;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--dark-tertiary);
    color: var(--light-color);
    border-radius: 50%;
    font-size: 18px;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    text-decoration: none;
} 