/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --euphoria-dark-green: #1a2a22; /* Main dark background */
    --euphoria-light-green: #38a169; /* Primary action button green */
    --euphoria-light-green-opacity: rgba(56, 161, 105, 0.2); /* For badge background */
    --euphoria-grey-text: #e0e0e0; /* Lighter text on dark backgrounds */
    --euphoria-bg-light-grey: #f8f9fa; /* General light background */
    --euphoria-yellow: #f8f9fa; /* Changed to a lighter yellow for badge */
    --euphoria-yellow-badge-bg: #E8F97B; /* Exact yellow from Figma */
    --euphoria-white-bg: #FFFFFF;
    --euphoria-dark-text: #333;
    --dark-purple: #1a0122; /* Adjust to your exact dark purple from the image */
    --dark-card: #2F053F;   /* Adjust to your exact dark card background from the image */
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--euphoria-bg-light-grey);
    color: var(--euphoria-dark-text); /* Default text color */
    box-sizing: border-box; /* Include padding in element's total width and height */
}

.small-text {
    font-size: 0.85rem;
}

.fw-medium {
    font-weight: 500 !important;
}

/* Navbar adjustments */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    height: 85px;
    display: flex;
    align-items: center;
    background-color: transparent;
    transition: background-color 0.3s ease, top 0.3s ease, width 0.3s ease, margin 0.3s ease, border-radius 0.3s ease;
    z-index: 1030;
    box-sizing: border-box;
}

.navbar.sticky {
    background-color: var(--euphoria-dark-green) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    top: 20px;
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
}

.navbar-brand .logo-text {
    color: white;
    font-weight: 700; /* Bolder for Euphoria text */
}

.navbar-nav .nav-link {
    font-weight: 400; /* Regular weight for nav links */
    transition: color 0.2s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: var(--euphoria-light-green) !important;
}

.bg-dark-green {
    background-color: var(--euphoria-dark-green) !important;
}

.btn-green {
    background-color: var(--euphoria-light-green);
    border-color: var(--euphoria-light-green);
    color: white;
    font-weight: 500;
    border-radius: 0.5rem;
    padding: 0.8rem 1.8rem; /* Adjusted padding */
}
.btn-green:hover {
    background-color: #2e8b57;
    border-color: #2e8b57;
    color: white;
}

.btn-white {
    background-color: white;
    border-color: white;
    color: var(--euphoria-dark-green);
    font-weight: 500;
    border-radius: 0.5rem;
    padding: 0.8rem 1.8rem;
}
.btn-white:hover {
    background-color: #f0f0f0;
    border-color: #f0f0f0;
    color: var(--euphoria-dark-green);
}

.btn-outline-light-green {
    border-color: var(--euphoria-light-green);
    color: var(--euphoria-light-green);
    font-weight: 500;
    border-radius: 0.5rem;
    padding: 0.8rem 1.8rem; /* Adjusted padding */
}
.btn-outline-light-green:hover {
    background-color: var(--euphoria-light-green);
    color: white;
}

.btn-outline-white {
    border: 1px solid rgba(255, 255, 255, 0.2); /* Lighter border for outline button */
    color: white;
    background-color: transparent;
    font-weight: 500;
    border-radius: 0.5rem;
    padding: 0.8rem 1.8rem;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Slight white background on hover */
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align content to the left */
    justify-content: flex-end; /* Align content to the bottom */
    padding: 85px 50px 50px 50px; /* Top padding for navbar, right, bottom, left padding for content */
}

.hero-section::before {
    content: none;
}

.hero-section > .container-fluid {
    padding-top: 0; /* Remove redundant top padding */
    text-align: left; /* Align text inside to the left */
    margin-top: auto; /* Push content to the bottom */
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeIn 2s ease-in-out; /* Add fade-in animation */
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 1.1rem; /* Slightly smaller lead text */
}

.hero-mockup-container {
    max-width: 700px;
    height: auto;
    margin-top: 10rem; /* Adjusted margin to position phone mockup below buttons */
    position: relative;
    z-index: 50; /* Ensure mockup is above hero-section background */
}

.hero-app-mockup {
    width: 100%; /* Ensure mockup takes full width of its container */
    height: auto;
    border-radius: 2rem; /* More rounded corners for the phone */
    box-shadow: 0 10px 40px rgba(0,0,0,0.3); /* Stronger shadow */
}

/* Hero Overlay Elements (Cards) */
.hero-overlay-card {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1); /* More transparent white */
    backdrop-filter: blur(15px); /* Stronger frosted glass effect */
    border-radius: 0.75rem;
    padding: 1.2rem;
    color: white;
    font-size: 0.9rem;
    z-index: 60; /* Ensure these are above the mockup container */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-overlay-card.total-balance {
    top: 25%; /* Adjusted for better vertical placement */
    left: -10%;
    width: 220px;
}
.hero-overlay-card.received {
    bottom: 5%; /* Adjusted for better vertical placement */
    left: -15%;
    width: 220px;
    background-color: var(--euphoria-light-green) !important;
    border-color: var(--euphoria-light-green);
}
.hero-overlay-card.net-income {
    top: 20%; /* Adjusted for better vertical placement */
    right: -10%;
    width: 200px;
}
.hero-overlay-card.trusted-users {
    bottom: -5%; /* Adjusted for better vertical placement */
    right: -15%;
    width: 220px;
}

.hero-overlay-card .icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.hero-overlay-card .icon-circle .bi-currency-dollar {
    color: white !important; /* Ensure icon is white on green background */
}

/* Clients Section */
.clients-section {
    padding: 60px 0;
    background-color: var(--euphoria-white-bg);
}

.clients-section h4 {
    color: #555;
    font-weight: 600;
}

.client-logo {
    opacity: 0.7;
    transition: opacity 0.3s ease;
    height: 40px; /* Standardize logo height */
    object-fit: contain; /* Ensure logos fit without distortion */
}
.client-logo:hover {
    opacity: 1;
}

/* New Features Section Styles */
.features-overview-section {
    background-color: var(--euphoria-white-bg);
    border-radius: 10px;
    margin-bottom: 5rem; /* Add some space below this section */
}

.features-overview-section .badge {
    background-color: white !important;
    color: var(--euphoria-dark-text) !important;
    border: 1px solid #e0e0e0; /* Light grey border */
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.5em 1em; /* Adjust padding as needed */
    display: inline-flex; /* To center content within the badge if needed */
    align-items: center;
    justify-content: center;
}

.features-overview-section h2 {
    font-size: 3.5rem; /* Larger heading */
    font-weight: 700;
    color: var(--euphoria-dark-text);
    line-height: 1.2;
}

.features-overview-section .lead {
    color: #555; /* Darker grey text for lead paragraph */
    font-size: 1.15rem;
}

.features-overview-section .card {
    border: 1px solid #e0e0e0; /* Light grey border for cards */
    border-radius: 1rem; /* More rounded corners */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Subtle shadow */
    background-color: white;
}

.features-overview-section .card-body {
    padding: 2rem; /* Consistent padding inside cards */
}

.features-overview-section .card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--euphoria-dark-text);
}

.features-overview-section .card-text {
    color: #666; /* Slightly darker text for card content */
    text-align: left; /* Explicitly ensure left alignment */
}

.btn-dark-green {
    background-color: var(--euphoria-dark-green);
    border-color: var(--euphoria-dark-green);
    color: white;
    font-weight: 500;
    border-radius: 0.5rem;
    padding: 0.8rem 1.8rem;
}
.btn-dark-green:hover {
    background-color: #0d1a15;
    border-color: #0d1a15;
    color: white;
}

.bar-chart-bar {
    width: 8%; /* Adjust width as needed */
    background-color: #e0e0e0; /* Light grey for inactive bars */
    border-radius: 0.25rem;
    margin: 0 1%;
    transition: background-color 0.3s ease;
}

.list-group-item {
    background-color: transparent !important;
    border-color: #eee; /* Lighter border for list items */
}

.list-group-item:last-child {
    border-bottom: none;
}

.form-check-input:checked {
    background-color: var(--euphoria-light-green);
    border-color: var(--euphoria-light-green);
}

.btn-outline-secondary {
    border-color: #e0e0e0; /* Match Figma border color */
    color: #6c757d; /* Match Figma text color */
    background-color: white;
    border-radius: 0.5rem; /* Less rounded corners, matching Figma */
    padding: 0.5rem 1rem; /* Adjust padding for smaller buttons */
    font-size: 0.9rem; /* Adjust font size */
    font-weight: 500;
}

.btn-outline-secondary:hover {
    background-color: #f8f9fa;
    border-color: #d0d0d0;
    color: #6c757d;
}

.btn-link.text-success {
    color: var(--euphoria-light-green) !important;
}

/* Footer */
footer {
    background-color: #1a2a22 !important;
    padding: 3rem 0;
    color: var(--euphoria-grey-text);
    margin-top: 0;
    border-top: none;
}

footer hr.border-secondary {
    display: none !important;
}

footer .list-unstyled li a {
    font-size: 0.9rem; /* Slightly smaller footer links */
}

footer .img-fluid {
    height: 40px; /* Standardize app icon height */
    width: auto;
}

body.bg-light, body {
    background: #f5f7fa;
    min-height: 100vh;
}

.left-image-col {
    background: #e6e6e6;
    min-height: 100vh;
    padding: 0;
}
.left-image-col img {
    object-fit: cover;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
}

.right-form-col {
    min-height: 100vh;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.card {
    border: none;
    border-radius: 15px;
}

.card-body {
    border-radius: 15px;
}

.form-control, .form-control-lg, .form-select {
    border-radius: 16px;
    padding: 1.1rem 1.2rem;
    font-size: 1.13rem;
    border: 1.5px solid #e0e0e0;
    background: #fafbfc;
    transition: border 0.2s, box-shadow 0.2s;
    box-shadow: none;
    width: 100%;
    min-height: 56px;
    box-sizing: border-box;
}
.form-control:focus, .form-select:focus {
    border-color: #232323;
    background: #fff;
    box-shadow: 0 0 0 0.08rem #23232322;
}

.form-control-lg {
    font-size: 1.13rem;
    padding: 1.1rem 1.2rem;
    border-radius: 16px;
    min-height: 56px;
}

.d-flex.gap-2 > .btn {
    margin-bottom: 0 !important;
    min-height: 52px;
    font-size: 1.18rem;
    font-weight: 600;
    border-radius: 999px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn {
    background: #fff !important;
    border: 1.5px solid #232323 !important;
    color: #232323 !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    transition: background 0.2s, border 0.2s, color 0.2s;
}
.prev-btn:hover {
    background: #f5f5f5 !important;
    color: #232323 !important;
    border-color: #232323 !important;
}

.next-btn, .btn-dark {
    font-size: 1.18rem;
    font-weight: 600;
    border-radius: 999px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
    padding: 0.95rem 0;
    letter-spacing: 0.01em;
    min-height: 52px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-label {
    font-weight: 500;
    color: #495057;
}

.form-select option {
    padding: 10px;
}

a {
    color: #0d6efd;
    font-weight: 500;
}

a:hover {
    color: #0a58ca;
}

.modal-landing {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 10;
    background: rgba(245, 245, 245, 0.7);
    backdrop-filter: blur(1.5px);
}

.registration-modal {
    max-width: 700px;
    min-height: 750px; /* Increased min-height to accommodate all content */
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.13);
    background: #fff;
    margin: 48px 0;
    padding: 3.5rem 2.5rem 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.btn-close {
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.btn-close:hover {
    opacity: 1;
}

h1.display-6 {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: #232323;
    line-height: 1.1;
}

.input-group-text {
    background: #f5f5f5;
    border-radius: 16px 0 0 16px;
    border: 1.5px solid #e0e0e0;
    border-right: none;
    font-size: 1.15rem;
    color: #232323;
}

.input-group .form-control {
    border-radius: 0 16px 16px 0;
    border-left: none;
}

.input-group .form-control:focus {
    box-shadow: 0 0 0 0.1rem #23232322;
    border-color: #232323;
    background: #fff;
}

.btn-outline-secondary img {
    margin-right: 4px;
}

.text-muted, .small.text-muted {
    color: #888 !important;
}

.text-decoration-underline {
    text-decoration: underline !important;
}

@media (max-width: 991.98px) {
    .left-image-col {
        display: none !important;
    }
    .right-form-col {
        min-height: 100vh;
        width: 100vw;
    }
    .registration-modal {
        min-height: 100vh;
        height: auto;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
    }
}

@media (max-width: 600px) {
    .registration-modal {
        max-width: 98vw;
        padding: 1.5rem 0.5rem;
    }
    h1.display-6 {
        font-size: 1.3rem;
    }
}

/* --- Landing Page Styles --- */
.landing-bg {
    background: linear-gradient(120deg, #f8fafc 0%, #e9f0fb 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-section {
    padding: 80px 0 60px 0;
}

.hero-img {
    max-width: 90%;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.features-section .feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    background: #e9f0fb;
    border-radius: 50%;
}

.cta-section {
    background: linear-gradient(90deg, #e9f0fb 0%, #f8fafc 100%);
    border-radius: 1.5rem;
    margin: 40px 0;
}

.btn-primary {
    background: #2d6cdf;
    border: none;
    border-radius: 2rem;
    font-weight: 600;
    transition: background 0.2s;
}
.btn-primary:hover, .btn-primary:focus {
    background: #1b4fa0;
}

footer {
    /* Remove border-top property completely */
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent; /* Ensure it starts transparent */
    transition: background-color 0.3s ease;
    z-index: 1030; /* Set a high z-index for the fixed navbar */
}

.navbar.sticky {
    background-color: var(--euphoria-dark-green) !important; /* Use the dark green when sticky */
}

.bg-yellow-gradient {
    background: linear-gradient(to right, #E8F97B, #a7e937); /* Example gradient, adjust if needed */
    color: var(--euphoria-dark-text) !important;
}

.hero-section .badge {
    font-weight: 600;
    font-size: 0.8em; /* Smaller font for badge */
    padding: 0.5em 1em;
}

.floating-image {
    position: absolute;
    bottom: 20%; /* Adjust as needed */
    left: 10%; /* Adjust as needed */
    width: 250px; /* Adjust as needed */
    animation: float 3s ease-in-out infinite;
}

.floating-image-right {
    position: absolute;
    top: 15%; /* Adjust as needed */
    right: 10%; /* Adjust as needed */
    width: 200px; /* Adjust as needed */
    animation: float 3s ease-in-out infinite;
}

.floating-image-left {
    position: absolute;
    bottom: 20%; /* Adjust as needed */
    left: 10%; /* Adjust as needed */
    width: 250px; /* Adjust as needed */
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Subscription Analytics Section Styles */
.subscription-analytics-section {
    background-color: var(--euphoria-bg-light-grey);
}

.subscription-analytics-section .img-fluid {
    max-width: 100%;
    height: auto;
    display: block; /* Ensures image does not have extra space below it */
    margin: 0 auto; /* Center image on smaller screens */
}

/* Ensure the shadow-lg class from Bootstrap is effective */
.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important;
}

/* Text colors for icons, assuming they are aligned with Bootstrap variants */
.text-success {
    color: var(--euphoria-light-green) !important; /* Using euphoria-light-green for success */
}

.text-warning {
    color: #ffc107 !important; /* Bootstrap warning color */
}

.text-info {
    color: #17a2b8 !important; /* Bootstrap info color */
}

.text-danger {
    color: #dc3545 !important; /* Bootstrap danger color */
}

/* Other styles (if any) */

/* Manage Your Plan Section Styles */
.manage-plan-section .plan-card {
    border-radius: 1rem;
    overflow: hidden; /* Ensures gradient border is contained */
}

.manage-plan-section .plan-card .card-body {
    padding: 2.5rem;
}

.manage-plan-section .text-purple {
    color: #6a0dad; /* A shade of purple for the text */
}

/* Premium card with gradient border */
.premium-gradient-border {
    position: relative;
    padding: 2px; /* controls the thickness of the border */
    background: linear-gradient(135deg, var(--euphoria-yellow-badge-bg) 0%, #FFD700 100%); /* Yellow gradient from the badge */
    border-radius: 1rem; /* Match the card's border-radius */
}

.premium-gradient-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--euphoria-yellow-badge-bg) 0%, #FFD700 100%); /* Yellow gradient from the badge */
    z-index: -1;
}

.premium-gradient-border .card-body {
    background-color: var(--euphoria-white-bg); /* Ensure inner content has white background */
    border-radius: 1rem; /* Match the card's border-radius */
    color: var(--euphoria-dark-text); /* Change text color to dark for readability */
}

.bg-light-grey {
    background-color: #F8F9FA; /* Light grey background */
}

.om-os-hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: #fff;
}

.om-os-hero-section .background-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.om-os-hero-section .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.om-os-hero-section .blue-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 255, 0.7); /* Blue overlay with 70% opacity */
}

.om-os-hero-section .content-container {
    z-index: 1000;
}

.om-os-hero-section .about-us-label {
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #a0a0a0; /* Gray color for ABOUT US */
}

.om-os-hero-section .scroll-down-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #a0a0a0; /* Gray color for SCROLL DOWN */
    font-size: 0.8rem;
}

.om-os-hero-section .scroll-down-indicator i {
    display: block;
    margin-top: 5px;
}

.welcome-section h2.display-3 {
    font-weight: 700 !important;
    color: #343a40; /* Dark text color */
}

.why-choose-section .icon-circle {
    width: 80px;
    height: 80px;
    background-color: #f0f8ff; /* Light blue background */
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #007bff; /* Blue icon color */
    border: 1px solid rgba(0, 123, 255, 0.2); /* Light blue border */
}

.contact-form-section {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: flex-start; /* Ændret fra center til flex-start */
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: #fff;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.contact-form-section .container-fluid {
    padding-top: 80px; /* Tilføjer padding i toppen for at justere positionen */
}

.contact-form-section .background-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-form-section .background-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); /* 20% dark overlay */
    z-index: 1;
}

.contact-form-section .background-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%; /* Adjust this height as needed for the fade effect */
    background: linear-gradient(to top, #1a2a22, rgba(26, 42, 34, 0));
    z-index: 2; /* Ensure fade is above the dark overlay */
}

.contact-form-section .container-fluid {
    z-index: 3; /* Ensure text is above all overlays */
}

.contact-form-section .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center; /* Justerer billedets position til toppen */
    filter: brightness(0.6);
}

.showcase-strengths-section .icon-stat-circle {
    width: 60px;
    height: 60px;
    background-color: #e9ecef; /* Light gray background */
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #007bff; /* Blue icon color */
}

.btn-outline-white-large {
    color: #fff;
    border-color: #fff;
}

.btn-outline-white-large:hover {
    background-color: #fff;
    color: #000; /* Change to black on hover */
}

.btn-primary {
    background-color: #007bff; /* Bootstrap primary blue */
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3; /* Darker blue on hover */
    border-color: #0056b3;
}

h1.display-1 {
    font-weight: 700 !important;
}

h1.display-3 {
    font-weight: 700 !important;
}

/* Custom styles for subscription cards */
.subscription-card-label {
    border: 1px solid #e0e0e0; /* Light grey border */
    border-radius: 0.75rem;
    padding: 1rem;
    cursor: pointer;
    transition: border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
    background-color: white;
    position: relative; /* Added for absolute positioning of children */
}

.subscription-card-label:hover {
    border-color: #8a2be2; /* Purple border on hover */
}

.subscription-card-label input[type="radio"] {
    /* Hide default radio button */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 2px solid var(--euphoria-light-green); /* Light green border */
    border-radius: 50%;
    width: 25px; /* Increased size */
    height: 25px; /* Increased size */
    outline: none;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    margin-top: 0; /* Align with text */
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.subscription-card-label input[type="radio"]:checked {
    border-color: var(--euphoria-light-green); /* Green border when checked */
    background-color: var(--euphoria-light-green); /* Green background when checked */
}

.subscription-card-label input[type="radio"]:checked::before {
    content: ''; /* Remove checkmark character */
    display: block;
    color: white;
    font-size: 0.8rem;
    line-height: 1; /* Adjust line-height for centering */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: white; /* White dot inside */
}

.subscription-card-label input[type="radio"]:focus {
    box-shadow: 0 0 0 0.25rem rgba(138, 43, 226, 0.25); /* Focus ring */
}

.subscription-card-label input[type="radio"]:checked + div {
    /* Style for the text content when radio is checked */
    color: #333; /* Darker text */
}

.discount-badge {
    background-color: #8a2be2; /* Purple background for badge */
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px; /* Pill shape */
    color: white;
    font-weight: bold;
    white-space: nowrap; /* Prevent text wrapping */
    transform: translate(25%, -25%); /* Adjust positioning */
    z-index: 10;
}

.info-icon {
    color: var(--euphoria-light-green); /* Green color for the icon */
    font-size: 1.5rem; /* Increased size */
    /* Removed background-color */
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Removed box-shadow */
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%); /* Adjust positioning to be half outside */
    z-index: 10;
}

.testimonials-hero-section {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0; /* Reduced vertical padding */
}

.testimonials-carousel-container {
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.testimonials-carousel-inner {
    display: flex;
    width: fit-content;
    animation: scroll-left var(--scroll-duration) linear infinite;
}

.testimonial-item {
    flex: 0 0 calc((100vw - 200px) / 3); /* Show 3 reviews with 100px margin in between */
    width: calc((100vw - 200px) / 3); /* Ensure consistent width */
    margin-right: 100px; /* Increased margin to 100px */
    flex-shrink: 0; /* Prevent items from shrinking */
    padding: 0px; /* Reduced padding between reviews */
}

@media (max-width: 991.98px) {
    .testimonial-item {
        flex: 0 0 calc((100vw - 100px) / 2); /* Show 2 reviews on medium screens with 100px margin */
        width: calc((100vw - 100px) / 2);
        margin-right: 100px; /* Consistent margin on medium screens */
    }
}

@media (max-width: 767.98px) {
    .testimonial-item {
        flex: 0 0 calc(100vw - 40px); /* Show 1 review on small screens with 20px padding on each side */
        width: calc(100vw - 40px);
        margin-right: 10px; /* Smaller margin for small screens */
    }
}

.testimonial-item .card {
    height: 100%; /* Ensure card fills the item height */
    border: none; /* Remove border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add subtle shadow */
    max-width: 432px; /* Adjust max-width proportionally */
    margin: 0 auto; /* Center the card within its flex item */
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(var(--scroll-width) * -1));
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    background: var(--euphoria-dark-green) !important;
    overflow: hidden;
    position: relative;
}

.testimonials-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 300px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #fff; /* Tynd hvid ramme om testimonials */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    padding: 2rem;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: #007bff;
    opacity: 0.1;
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #007bff;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #212529;
}

.author-title {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-prev,
.btn-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-prev:hover,
.btn-next:hover {
    background: #007bff;
    color: white;
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #007bff;
    transform: scale(1.2);
}

@media (max-width: 991.98px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 767.98px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .testimonials-track {
        gap: 1rem;
    }
}

/* Pricing Section */
.pricing-section .pricing-toggle {
    width: 3.5em; /* Adjust width as needed */
    height: 2em; /* Adjust height as needed */
    background-color: #e9ecef; /* Light grey for unchecked state */
    border-color: #e9ecef; /* Light grey border */
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.pricing-section .pricing-toggle:checked {
    background-color: var(--euphoria-light-green); /* Green for checked state */
    border-color: var(--euphoria-light-green); /* Green border */
}

.pricing-section .pricing-toggle:focus {
    box-shadow: 0 0 0 0.25rem rgba(56, 161, 105, 0.25); /* Greenish shadow on focus */
}

.pricing-section .pricing-card {
    border: none;
    background-color: var(--euphoria-white-bg);
}

.pricing-section .pricing-card ul li i.bi-check-circle-fill {
    color: var(--euphoria-light-green);
}

.pricing-section .pricing-card ul li i.bi-x-circle-fill {
    color: var(--bs-danger);
}

.pricing-section .pricing-card.h-100 {
    display: flex;
    flex-direction: column;
}

.pricing-section .pricing-card .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Pro Plan specific styles */
.pricing-section .pricing-card[style*="background-color: #1a1a1a;"] {
    color: white;
}

.pricing-section .pricing-card[style*="background-color: #1a1a1a;"] .text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.pricing-section .pricing-card[style*="background-color: #1a1a1a;"] .btn-dark-green {
    background-color: var(--euphoria-light-green);
    border-color: var(--euphoria-light-green);
    color: white;
}

.pricing-section .pricing-card[style*="background-color: #1a1a1a;"] .btn-dark-green:hover {
    background-color: #2e8b57;
    border-color: #2e8b57;
}

.pricing-section .pricing-card[style*="background-color: #1a1a1a;"] ul li i.text-green-accent {
    color: var(--euphoria-light-green);
}

.pricing-section .badge.bg-yellow {
    background-color: var(--euphoria-yellow-badge-bg) !important;
    color: var(--euphoria-dark-text) !important;
}

.pricing-section .form-check-input.pricing-toggle:checked {
    background-color: var(--euphoria-light-green);
    border-color: var(--euphoria-light-green);
}

.pricing-section .form-check-input.pricing-toggle:focus {
    box-shadow: 0 0 0 0.25rem rgba(56, 161, 105, 0.25);
}

/* Opret Ticket Page Styles */
.form-control-lg, .form-select-lg {
    height: 3.5rem; /* Larger height for form controls */
    padding: 0.75rem 1.25rem; /* Adjust padding */
}

.form-label.text-muted {
    color: #6c757d !important; /* Ensure muted text color for labels */
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.card.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}

.btn-dark {
    background-color: #212529;
    border-color: #212529;
    color: white;
}

.btn-dark:hover {
    background-color: #000000;
    border-color: #000000;
    color: white;
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #5c636a;
    border-color: #565e64;
}

.pitch-content-team-section .img-fluid {
    width: 100%;
    height: 100px; /* Fixed height for image grid consistency */
    object-fit: cover;
}

/* Blog Styles */
.blog-content {
    background-color: #111827;
}

.blog-content .card {
    transition: transform 0.3s ease;
}

.blog-content .card:hover {
    transform: translateY(-5px);
}

.blog-content .card img {
    height: 300px;
    object-fit: cover;
}

.categories-filter .btn {
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.categories-filter .btn:hover,
.categories-filter .btn.active {
    background-color: var(--euphoria-light-green);
    border-color: var(--euphoria-light-green);
    color: white;
}

.search-bar .form-control {
    background-color: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.1);
}

.search-bar .form-control:focus {
    background-color: rgba(255,255,255,0.1) !important;
    border-color: var(--euphoria-light-green);
    box-shadow: none;
}

.newsletter-section {
    background-color: #111827;
}

.newsletter-section .form-control {
    background-color: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.75rem 1.5rem;
}

.newsletter-section .btn-success {
    background-color: var(--euphoria-light-green);
    border-color: var(--euphoria-light-green);
    padding: 0.75rem 2rem;
}

.badge {
    padding: 0.5rem 1rem;
    font-weight: 500;
}

/* Blog Categories */
.categories-filter .btn-dark {
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.categories-filter .btn-dark:hover {
    background-color: #2ecc71;
    border-color: #2ecc71;
    transform: translateY(-2px);
}

.categories-filter .btn-dark.active {
    background-color: #2ecc71;
    border-color: #2ecc71;
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.2);
}

/* Make hero section on blog page 40% shorter */
body.blog-page .hero-section {
    min-height: 60vh !important;
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

/* Fade connection between pricing and footer */
.fade-connect-section {
    background: linear-gradient(
        to bottom,
        rgba(26, 42, 34, 0.95) 80%,
        rgba(26, 42, 34, 0.7) 95%,
        transparent 100%
    );
    z-index: 20;
    overflow: visible;
    margin-bottom: 0;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.custom-footer {
    background: linear-gradient(
        to top,
        var(--euphoria-dark-green) 90%,
        rgba(26, 42, 34, 0.7) 100%
    );
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
    margin-top: -32px; /* Overlap for connection, adjust as needed */
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}
@media (max-width: 767.98px) {
    .fade-connect-section,
    .custom-footer {
        border-radius: 0 !important;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .custom-footer {
        margin-top: -16px;
    }
}

.custom-footer {
    margin-bottom: 24px !important; /* or 40px if your side gap is 40px */
}

.bg-success {
    background-color: #1a2a22;
}

/* Testimonial slider animation (venstre) */
.testimonial-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.testimonial-carousel-inner {
  display: flex;
  align-items: stretch;
  animation: testimonial-slide-left 20s linear infinite;
}
.testimonial-carousel-inner:hover {
  animation-play-state: paused;
}
@keyframes testimonial-slide-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Value slider animation (højre) */
.value-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.value-carousel-inner {
  display: flex;
  align-items: stretch;
  animation: value-slide-right 20s linear infinite;
}
.value-carousel-inner:hover {
  animation-play-state: paused;
}
@keyframes value-slide-right {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

/* Ny: ekstra value slider animation (venstre) */
.extra-value-carousel-inner {
  display: flex;
  align-items: stretch;
  animation: extra-value-slide-left 20s linear infinite;
}
.extra-value-carousel-inner:hover {
  animation-play-state: paused;
}
@keyframes extra-value-slide-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsiv tilpasning */
@media (max-width: 991.98px) {
  .testimonial-card, .value-card {
    min-width: 260px !important;
    max-width: 90vw !important;
    flex: 0 0 260px !important;
    padding: 1.2rem 1rem !important;
  }
}
.testimonial-avatar {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
