/* ==========================================
   1. VARIABLES & RESET
   ========================================== */
:root {
    --nd-cyan: #00aeef;
    --nd-yellow: #ffd100;
    --nd-magenta: #b22177;
    --nd-green: #27ae60;
    --nd-dark: #1e272e;
    --nd-light: #f8f9fa;
    --nav-height: 75px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    line-height: 1.6;
    color: var(--nd-dark);
    overflow-x: hidden;
    background-color: #fff;
}

/* ==========================================
   2. NAVIGATION (Sticky)
   ========================================== */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    height: var(--nav-height);
    background: #fff;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.logo-main {
    height: 45px;
    width: auto;
}

.nav-links a {
    text-decoration: none;
    color: var(--nd-dark);
    font-weight: 600;
    margin-left: 2rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--nd-cyan);
}

/* ==========================================
   3. HERO & SUBPAGE HEADERS
   ========================================== */
header#home {
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 4rem 8%;
    background: radial-gradient(circle at bottom left, rgba(0, 174, 239, 0.07), transparent);
}

.subpage-header {
    padding: 60px 8% 40px;
    border-bottom: 1px solid #eee;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    font-weight: 800;
}

.hero-content span {
    color: var(--nd-cyan);
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 750px;
    margin-bottom: 2.5rem;
    color: #333;
}

.hero-content strong {
    color: var(--nd-dark);
    border-bottom: 2px solid var(--nd-yellow);
}

/* Color Accents for the Diversified Holding Headline */
.hero-content h1 span {
    display: inline-block;
    position: relative;
}

/* Match your service card top-borders */
.text-yellow {
    color: #f1c40f;
} /* KMU / SME Acquisitions */
.text-green {
    color: #2ecc71;
} /* CTRM / Systems */
.text-magenta {
    color: #e91e63;
} /* Market Entry / Growth */

/* Subtle text-shadow for better readability on hero backgrounds */
.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--nd-dark);
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
}

/* ==========================================
   4. SERVICES (Index Cards)
   ========================================== */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 6rem 8%;
    background: var(--nd-light);
}

.service-card {
    background: white;
    padding: 4rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 260px;
    height: 260px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Theme Accents for Cards */
.yellow-top {
    border-top: 8px solid var(--nd-yellow);
}
.green-top {
    border-top: 8px solid var(--nd-green);
}
.magenta-top {
    border-top: 8px solid var(--nd-magenta);
}

/* ==========================================
   5. TEXT ELEMENTS & BUTTONS
   ========================================== */
.read-more {
    display: inline-block;
    margin-top: auto;
    padding-top: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.yellow-top .read-more {
    color: #b79500;
}
.green-top .read-more {
    color: var(--nd-green);
}
.magenta-top .read-more {
    color: var(--nd-magenta);
}
.read-more:hover {
    text-decoration: underline;
}

.btn {
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
}

.btn-primary {
    background: #1a1a1a;
    color: #fff;
    padding: 18px 36px;
    border-radius: 2px; /* Sharper corners for a corporate look */
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}
.btn-secondary {
    border: 2px solid var(--nd-cyan);
    color: var(--nd-cyan);
    margin-left: 10px;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 174, 239, 0.3);
}

/* ==========================================
   6. SUBPAGE SPECIALS (PRO GRID)
   ========================================== */
.details-section {
    padding: 80px 8%;
}
.underline {
    width: 50px;
    height: 5px;
    background: var(--nd-cyan);
    margin: 1.5rem 0;
}

.pro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.pro-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.pro-card.magenta-hover:hover {
    border-color: var(--nd-magenta);
    box-shadow: 0 10px 30px rgba(178, 33, 119, 0.15);
    transform: translateY(-5px);
}

.pro-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.pro-card .read-more {
    color: var(--nd-magenta);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 15px;
    display: inline-block;
}

.pro-card .read-more:hover {
    text-decoration: underline;
}

/* Background Gradients for Subpage Headers */
.green-bg {
    background: linear-gradient(135deg, #ffffff 0%, #f0fff4 100%);
}
.magenta-bg {
    background: linear-gradient(135deg, #ffffff 0%, #fff0f6 100%);
}
.yellow-bg {
    background: linear-gradient(135deg, #ffffff 0%, #fffdf0 100%);
}

.intro-box {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 50px;
    padding: 20px 30px;
}
.green-border {
    border-left: 5px solid var(--nd-green);
    background: #f0fff4;
}
.magenta-border {
    border-left: 5px solid var(--nd-magenta);
    background: #fff0f6;
}
.yellow-border {
    border-left: 5px solid var(--nd-yellow);
    background: #fffdf0;
}

/* ==========================================
   7. FOOTER
   ========================================== */
footer {
    background: var(--nd-dark);
    color: white;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 4rem 8%;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    color: var(--nd-cyan);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.footer-col p,
.footer-col a {
    color: #adb5bd;
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 2rem 8%;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
}

/* ==========================================
   8. RESPONSIVE QUERIES
   ========================================== */

/* Tablet & Large Mobile */
@media (max-width: 1024px) {
    .services {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin: 0 auto;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Small Mobile (THE KEY FIX) */
@media (max-width: 768px) {
    header#home,
    .subpage-header {
        padding-top: 100px; /* Buffer for sticky nav */
    }

    .nav-links a {
        margin-left: 1rem;
        font-size: 0.85rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .card-icon {
        width: 180px;
        height: 180px;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
    .btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* --- Desktop Contact Button Style --- */
.nav-contact-btn {
    background: var(--nd-cyan);
    color: white !important;
    padding: 8px 20px;
    border-radius: 4px;
    margin-left: 2rem;
}

/* --- Mobile Menu Toggle Styling --- */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: var(--nd-dark);
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* --- Responsive Menu Logic --- */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: 0;
        top: -100%; /* Hidden off-screen */
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.4s ease;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
    }

    .nav-links.active {
        top: var(--nav-height); /* Slides down just below the nav bar */
    }

    .nav-links a {
        margin: 1.5rem 0;
        display: block;
        font-size: 1.2rem;
    }

    .nav-contact-btn {
        margin: 1.5rem auto;
        width: 80%;
    }

    /* Animate Hamburger to X */
    .mobile-menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .mobile-menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

.trust-bar {
    background: #fff;
    padding: 20px 8%;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trust-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.trust-content span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
    font-weight: 600;
}

.partner-logo img {
    height: 35px; /* Adjust based on the partner logo shape */
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.partner-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .trust-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* --- INFO SECTION (HOMEPAGE) --- */
.info-section {
    padding: 10rem 8% 8rem; /* Large top padding to create space from the service cards */
    text-align: center;
    background: #fff;
    position: relative;
}

.info-section h2 {
    font-size: 2.5rem;
    color: var(--nd-dark);
    font-weight: 800;
    margin-bottom: 1rem;
}

.info-section .underline {
    width: 60px;
    height: 5px;
    background: var(--nd-cyan);
    margin: 0 auto 2.5rem;
}

.info-section p {
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.25rem;
    line-height: 1.8;
    color: #444;
}

/* Mobile Adjustment for Info Section */
@media (max-width: 768px) {
    .info-section {
        padding: 6rem 8% 4rem;
    }

    .info-section h2 {
        font-size: 2rem;
    }

    .info-section p {
        font-size: 1.1rem;
    }
}

.lang-switch {
    border: 1px solid var(--nd-cyan);
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 1rem !important;
    font-size: 0.8rem;
}
.lang-switch:hover {
    background: var(--nd-cyan);
    color: white !important;
}

/* --- Professional Holding Hero --- */
.hero-holding {
    padding: 160px 8% 100px;
    background: radial-gradient(circle at top right, #fdfdfd, #f4f7f6); /* Sophisticated subtle gradient */
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-holding.left-align {
    padding: 180px 10% 120px; /* Slightly more side padding for an elegant look */
    background: #ffffff;
    text-align: left;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
}

.eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 4px; /* Increased letter spacing for luxury feel */
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 2rem;
    font-weight: 700;
}

.eyebrow-magenta {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    color: var(--nd-magenta);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 2rem;
    text-align: center;
    margin-top: 40px;
    color: var(--nd-dark);
}

.hero-holding h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    color: #1a1a1a;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 2.5rem;
    letter-spacing: -1px; /* Tighter heading for modern look */
}

.hero-lead {
    font-size: 1.35rem;
    color: #4a4a4a;
    max-width: 600px;
    margin: 0 0 3.5rem 0;
    line-height: 1.8;
}

/* Precise Brand Accents */
.accent-yellow {
    border-bottom: 8px solid #f1c40f;
    padding-bottom: 4px;
}
.accent-green {
    border-bottom: 8px solid #2ecc71;
    padding-bottom: 4px;
}
.accent-magenta {
    border-bottom: 8px solid #e91e63;
    padding-bottom: 4px;
}

/* Refined Buttons */
.btn-primary {
    background: #1a1a1a;
    color: white;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    display: inline-block;
}

.btn-outline {
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
    padding: 16px 34px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
}
.btn-outline:hover {
    background: #1a1a1a;
    color: #fff;
}

@media (max-width: 768px) {
    .hero-holding {
        padding: 120px 5% 60px;
    }
    .btn-outline {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
    }
    .btn-primary {
        width: 100%;
    }

    .hero-holding.left-align {
        padding-top: 140px;
    }

    .hero-btns {
        flex-direction: column;
    }
}

/* Accent Underlines */
.accent-yellow {
    border-bottom: 6px solid #f1c40f;
    padding-bottom: 4px;
}
.accent-green {
    border-bottom: 6px solid #2ecc71;
    padding-bottom: 4px;
}
.accent-magenta {
    border-bottom: 6px solid #e91e63;
    padding-bottom: 4px;
}

/* Desktop Buttons alignment */
.hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* --- About Section (Holding Style) --- */
.about-holding {
    padding: 100px 10%;
    background-color: #f9f9f9; /* Subtle contrast from the white header */
    border-top: 1px solid #eee;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr; /* Asymmetric grid */
    gap: 4rem;
    align-items: start;
}

.about-title h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
}

.text-muted {
    color: #999;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustment */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-holding {
        padding: 60px 8%;
    }
}

/* --- Trust Bar / Cooperation Section --- */
.trust-bar.left-align {
    padding: 30px 10%;
    background: #ffffff;
    border-bottom: 1px solid #f2f2f2;
}

.trust-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.trust-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #999;
    font-weight: 600;
    white-space: nowrap;
}

.partner-grid {
    display: flex;
    align-items: center;
}

.trust-logo {
    height: 50px; /* Increased slightly for prestige */
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.trust-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .trust-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* Stats Box Layout */
.expert-intro {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 50px;
}

.intro-text {
    flex: 2; /* Gives more space to the text */
}

.stats-box {
    flex: 1; /* Stats take up less room */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-item-yellow,
.stat-item-green,
.stat-item-magenta {
    padding: 20px;
    background: #fff;
    border-left: 5px solid;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-item-yellow {
    border-color: #f1c40f;
}
.stat-item-green {
    border-color: #2ecc71;
}
.stat-item-magenta {
    border-color: #e91e63;
    padding: 20px;
    background: #fff;
    border-left: 5px solid var(--nd-magenta);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.stat-item-magenta strong {
    display: block;
    font-size: 1.5rem; /* Larger for the '100%' and 'Full' */
    color: var(--nd-magenta);
}

.stat-item-magenta span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #666;
}
.stat-item-yellow strong {
    display: block;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #999;
}

.stat-item-yellow span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* Mobile Responsiveness */
@media (max-width: 850px) {
    .expert-intro {
        flex-direction: column;
    }
    .stats-box {
        width: 100%;
        flex-direction: row; /* Side by side on tablets */
    }
}

@media (max-width: 480px) {
    .stats-box {
        flex-direction: column; /* Stacked on phones */
    }
}

/* --- CTRM Feature Items Layout --- */
.info-block-refined {
    padding: 40px 0;
}

.ctrm-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    max-width: 900px;
    margin-bottom: 50px;
}

.ctrm-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.feature-item {
    background: #fff;
    padding: 30px;
    border-radius: 4px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-item:hover {
    border-color: #2ecc71;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.feature-body strong {
    display: block;
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.feature-body p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .ctrm-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.cta-banner-magenta {
    background: linear-gradient(135deg, var(--nd-magenta) 0%, #8e1a5f 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    margin: 60px 0;
}

.cta-banner-magenta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-banner-magenta p {
    margin-bottom: 30px;
    opacity: 0.9;
    font-size: 1.1rem;
}

.cta-banner-magenta .btn-primary {
    background: white;
    color: var(--nd-magenta);
}

.cta-banner-magenta .btn-primary:hover {
    background: #fdfdfd;
    transform: scale(1.05);
}

.industry-verticals {
    background: #fdfdfd;
    padding: 60px 0;
    margin-top: 40px;
}

.vertical-header {
    text-align: center;
    margin-bottom: 40px;
}

.vertical-flex {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.vertical-item {
    flex: 1;
    max-width: 450px;
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 4px;
    position: relative;
    transition: 0.3s;
}

.vertical-item:hover {
    border-color: var(--nd-magenta);
}

.text-link {
    color: var(--nd-magenta);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 15px;
}

.text-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .vertical-flex {
        flex-direction: column;
        align-items: center;
    }
}

/* Calculator Layout */
.advanced-calculator {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.calc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.field-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.calc-input, select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Tooltip Container */
[data-tooltip] {
    position: relative;
    cursor: help;
}

/* The Tooltip Bubble */
[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%; /* Position above the element */
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    white-space: normal;
    width: 200px; /* Limits width so it doesn't run off screen */
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    line-height: 1.4;
    text-align: center;
}

/* Show on Hover */
[data-tooltip]:hover::after {
    visibility: visible;
    opacity: 1;
}

/* Small Arrow below the bubble */
[data-tooltip]::before {
    content: '';
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

[data-tooltip]:hover::before {
    visibility: visible;
    opacity: 1;
}

/* Result Card Styling */
.results-display {
    background: #1a1a1a;
    color: white;
    padding: 30px;
    border-radius: 8px;
}

.result-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    color: #00bcd4;
}

.breakdown p {
    font-size: 0.85rem;
    margin: 10px 0;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}