@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

:root {
    /* Brand Colors extracted from Logo */
    --color-primary: #1d5272; /* Deep Teal/Blue */
    --color-primary-dark: #12344a;
    --color-accent: #f5b027; /* Golden Yellow */
    --color-accent-hover: #e09b1f;

    /* Base Colors */
    --color-bg-light: #f8fafc;
    --color-bg-white: #ffffff;
    --color-text-main: #334155;
    --color-text-light: #64748b;
    --color-heading: #0f172a;

    /* UI Elements */
    --nav-bg: rgba(15, 23, 42, 0.9);
    --nav-text: #f8fafc;
    --footer-bg: #0f172a;
    --footer-text: #94a3b8;

    /* Shadows & Effects */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-glow: 0 0 20px rgba(245, 176, 39, 0.3);
    
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================= Reset & Typography ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    color: var(--color-heading);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-accent);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ================= Navbar (Glassmorphism) ================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-logo {
    height: 50px;
    width: auto;
}

.brand-text {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    white-space: nowrap;
    background: linear-gradient(to right, var(--color-accent), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-nav {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--nav-text);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-accent);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-primary);
}

.nav-contact-btn {
    padding: 0.4rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: white !important;
    border-radius: 20px;
    margin-left: 0.5rem;
}

.nav-contact-btn:hover {
    background-color: var(--color-primary);
    color: white !important;
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 0.25rem 0.6rem;
    font-size: 1.5rem;
    color: var(--nav-text);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ================= Buttons ================= */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: #fff;
}

.btn-accent {
    background-color: var(--color-accent);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.btn-accent:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(245, 176, 39, 0.5);
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

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

/* ================= Hero Section ================= */
.hero-section {
    padding-top: 120px; /* Offset for sticky nav */
    padding-bottom: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

/* Abstract shapes for background */
.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(29,82,114,0.3) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245,176,39,0.15) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text h1 span {
    display: block;
    font-weight: 300;
    color: #f8fafc;
    font-size: 2.5rem;
    margin-top: 0.5rem;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #cbd5e1;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn-glow {
    box-shadow: 0 0 25px rgba(29, 82, 114, 0.6);
}

.btn-outline-light {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: var(--color-heading);
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    z-index: 2;
    perspective: 1000px;
}

.hero-main-img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-image-wrapper:hover .hero-main-img {
    transform: rotateY(0) rotateX(0);
}

/* Glassmorphism Badges */
.glass-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 3;
    animation: float-badge 6s ease-in-out infinite;
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
    color: #fff;
}

.badge-text strong {
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-accent);
}

.badge-text span {
    font-size: 0.85rem;
    color: #cbd5e1;
}

.badge-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 15%;
    right: -5%;
    animation-delay: 2s;
}

.badge-3 {
    top: 5%;
    right: -10%;
    animation-delay: 1s;
}

.badge-4 {
    bottom: 10%;
    left: -5%;
    animation-delay: 3s;
}

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

@keyframes float-badge {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
    100% { transform: translateY(0px) scale(1); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-float {
    animation: float 8s ease-in-out infinite;
}

.animate-fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Dynamic Glowing Orbs */
.hero-glow-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.4;
    animation: pulse-glow 8s infinite alternate;
}

.hero-glow-blob.top-left {
    top: -20%;
    left: -10%;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 60%);
}

.hero-glow-blob.bottom-right {
    bottom: -30%;
    right: -10%;
    background: radial-gradient(circle, rgba(245, 176, 39, 0.3) 0%, transparent 60%);
    animation-delay: -4s;
}

@keyframes pulse-glow {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.2); opacity: 0.6; }
}

/* Mouse Follow Glow Effect */
.cursor-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(29, 82, 114, 0.4) 0%, rgba(245, 176, 39, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none; /* so it doesn't block clicks */
    transform: translate(-50%, -50%);
    z-index: 1;
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-section:hover .cursor-glow {
    opacity: 1;
}

/* ================= Features / Cards ================= */
.section {
    padding: 100px 0;
}

.features-section {
    background: linear-gradient(to bottom, #e2e8f0 0%, var(--color-bg-light) 15%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--color-accent);
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto 4rem auto;
    line-height: 1.7;
}

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

.feature-card {
    background: var(--color-bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.02);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(245, 176, 39, 0.3);
}

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

.feature-card:hover .feature-icon {
    background: var(--color-primary);
    color: #fff;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* ================= Highlight Section (Split content) ================= */
.highlight-section {
    background: var(--color-bg-white);
}

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

.split-content.reverse {
    direction: rtl;
}

.split-content.reverse > * {
    direction: ltr;
}

.split-image-wrapper {
    position: relative;
    padding: 2rem 0;
}

.experience-image {
    position: relative;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.experience-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(29, 82, 114, 0.2) 0%, transparent 100%);
    pointer-events: none;
}

.main-exp-img {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.experience-image:hover .main-exp-img {
    transform: scale(1.05);
}

.floating-logo-card {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    background: var(--color-bg-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 10;
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(0,0,0,0.05);
}

.floating-logo-card img {
    height: 50px;
    width: auto;
}

.logo-card-text {
    display: flex;
    flex-direction: column;
}

.logo-card-text strong {
    color: var(--color-primary);
    font-size: 1.1rem;
    font-weight: 800;
}

.logo-card-text span {
    color: var(--color-text-light);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Custom Programming CSS Diagram */
.tech-diagram-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.diagram-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 1.5rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 15px 35px rgba(29, 82, 114, 0.15);
    z-index: 10;
    border: 1px solid rgba(245, 176, 39, 0.3);
    cursor: help;
}

.diagram-center img {
    height: 45px;
    width: auto;
    display: block;
    transition: transform 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Hover Tooltip */
.diagram-center:hover img {
    transform: rotateY(720deg);
}

.diagram-center::after {
    content: "Uvijek u sredini — da za vas spojimo pravu tehnologiju s pravim rješenjem";
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.8);
    background: var(--color-primary);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: normal;
    width: max-content;
    max-width: 280px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 10px 25px rgba(29, 82, 114, 0.3);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.diagram-center::before {
    content: "";
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.8);
    border-width: 8px;
    border-style: solid;
    border-color: var(--color-primary) transparent transparent transparent;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.diagram-center:hover::after,
.diagram-center:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
}

@keyframes panic-shake {
    0% { transform: translate(0, 0) rotate(0deg); filter: hue-rotate(0deg); }
    25% { transform: translate(3px, -3px) rotate(3deg); filter: hue-rotate(45deg); }
    50% { transform: translate(-3px, 3px) rotate(-3deg); filter: hue-rotate(90deg); }
    75% { transform: translate(-3px, -3px) rotate(3deg); filter: hue-rotate(180deg); }
    100% { transform: translate(3px, 3px) rotate(-3deg); filter: hue-rotate(360deg); }
}

.orbit-ring {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 2px dashed rgba(29, 82, 114, 0.15);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: spin-slow 60s linear infinite;
}

.diagram-node {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90px;
    height: 90px;
    margin: -45px 0 0 -45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    z-index: 5;
}

.diagram-node:hover {
    scale: 1.1;
    box-shadow: var(--shadow-lg), 0 0 15px rgba(245, 176, 39, 0.4);
    z-index: 20;
}

.diagram-node svg {
    width: 32px;
    height: 32px;
    margin-bottom: 5px;
    fill: var(--color-primary);
    transition: var(--transition);
}

.diagram-node:hover svg {
    fill: var(--color-accent);
}

.diagram-node span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-heading);
}

/* Positioning the nodes along the circle (radius = 160px from center) */
.node-windows { transform: translate(0, -160px); }
.node-ios     { transform: translate(138px, -80px); }
.node-linux   { transform: translate(138px, 80px); }
.node-iot     { transform: translate(0, 160px); }
.node-cloud   { transform: translate(-138px, 80px); }
.node-android { transform: translate(-138px, -80px); }

@keyframes spin-slow {
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 768px) {
    .tech-diagram-wrapper {
        height: 350px;
        transform: scale(0.85);
    }
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* ================= Footer ================= */
.site-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-col p, .footer-col a {
    color: var(--footer-text);
    margin-bottom: 0.5rem;
    display: block;
}

.footer-col a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

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

/* ================= Responsive ================= */
@media (max-width: 992px) {
    .hero-content, .split-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .navbar-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--nav-bg);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-align: center;
    }

    .navbar-nav.show {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        display: grid;
        align-items: center;
        justify-items: flex-start;
        gap: 0;
    }
    .brand-text {
        display: block;
        font-size: 1.1rem;
        grid-area: 1 / 1;
        animation: swapTextMobile 10s infinite cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
    }
    .navbar-logo {
        height: 38px;
        grid-area: 1 / 1;
        animation: swapLogoMobile 10s infinite cubic-bezier(0.4, 0, 0.2, 1);
    }
}

@keyframes swapLogoMobile {
    0%, 40%   { opacity: 1; filter: blur(0px); transform: scale(1); pointer-events: auto; }
    50%, 90%  { opacity: 0; filter: blur(4px); transform: scale(0.98); pointer-events: none; }
    100%      { opacity: 1; filter: blur(0px); transform: scale(1); pointer-events: auto; }
}

@keyframes swapTextMobile {
    0%, 40%   { opacity: 0; filter: blur(4px); transform: scale(0.98); pointer-events: none; }
    50%, 90%  { opacity: 1; filter: blur(0px); transform: scale(1); pointer-events: auto; }
    100%      { opacity: 0; filter: blur(4px); transform: scale(0.98); pointer-events: none; }
}

/* Premium CMS Action Links (>> replacement) */
.premium-action-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--color-primary), #00aaff);
    color: white !important;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 170, 255, 0.3);
    transition: all 0.3s ease;
}
.premium-action-link::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="white"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 7l5 5m0 0l-5 5m5-5H6" /></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}
.premium-action-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 170, 255, 0.4);
}
.premium-action-link:hover::before {
    transform: translateX(4px);
}

/* Secondary CMS Action Links (> replacement) */
.secondary-action-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-primary);
    background-color: rgba(29, 82, 114, 0.03);
    font-weight: 600;
    text-decoration: none;
    padding: 0.75rem 1.25rem 0.75rem 0.75rem;
    border: 1px solid rgba(29, 82, 114, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    line-height: 1.5;
    text-align: left;
}
.secondary-action-link::before {
    content: '';
    flex-shrink: 0;
    display: block;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="%231d5272"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2.5" d="M9 5l7 7-7 7" /></svg>');
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
}
.secondary-action-link:hover {
    background-color: var(--color-primary);
    color: white !important;
    border-color: var(--color-primary);
    box-shadow: 0 6px 20px rgba(29, 82, 114, 0.2);
}
.secondary-action-link:hover::before {
    background-color: var(--color-accent);
    box-shadow: 0 4px 12px rgba(245, 176, 39, 0.4);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="white"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="3" d="M9 5l7 7-7 7" /></svg>');
    transform: scale(1.05);
}

/* Premium CMS Highlight Box (!! replacement) */
.premium-highlight-box {
    position: relative;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: linear-gradient(to right, rgba(29, 82, 114, 0.05), rgba(29, 82, 114, 0.01));
    border-left: 4px solid var(--color-accent);
    border-radius: 0 8px 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    line-height: 1.6;
}
.premium-highlight-box::before {
    content: '!';
    position: absolute;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--color-accent);
    color: white;
    font-weight: 900;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(245, 176, 39, 0.4);
}

/* CMS Content Lists Styling */
ul:not(.navbar-nav):not(.footer-nav) {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}
ul:not(.navbar-nav):not(.footer-nav) li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}
ul:not(.navbar-nav):not(.footer-nav) li:last-child {
    margin-bottom: 0;
}
