﻿.pageright {
    float: right;
}

.red {
    color: var(--red);
}

.auto-grid-section {
    padding: 1rem 0;
}

.auto-grid-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 0;
}

    .auto-grid-row .keylink-card {
        height: 100%;
    }

.equal-height-cards .keylink-card .card-body {
    display: flex;
    flex-direction: column;
}

.equal-height-cards .keylink-card p {
    flex-grow: 1;
    margin-top: auto;
}

.breadcrumb-nav {
    background-color: var(--background-light);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.875rem;
    background-color: inherit;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: var(--text-muted);
}

    .breadcrumb-item + .breadcrumb-item::before {
        content: '/';
        color: var(--border-color);
        margin: 0 0.5rem;
        font-weight: normal;
    }

    .breadcrumb-item a {
        color: var(--primary-color);
        text-decoration: none;
        transition: color 0.3s ease;
        font-weight: 500;
    }

        .breadcrumb-item a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

    .breadcrumb-item.active {
        color: var(--text-muted);
        font-weight: normal;
    }

    .breadcrumb-item i {
        margin-right: 0.375rem;
        font-size: 0.8rem;
    }

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='65' height='48' viewBox='0 0 65 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1.5' stroke-opacity='0.1'%3E%3Crect x='25.5' y='4' width='14' height='14' transform='rotate(45 32.5 11)'/%3E%3Crect x='13.5' y='17' width='14' height='14' transform='rotate(45 20.5 24)'/%3E%3Crect x='37.5' y='17' width='14' height='14' transform='rotate(45 44.5 24)'/%3E%3C/g%3E%3C/svg%3E");
        background-size: 70px 58px;
    }

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-color);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.5;
    opacity: 0.95;
}

.hero-title.gradient {
    background: linear-gradient(45deg, var(--accent-color), #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section img {
    width: 195px;
    height: auto;
}

.hero-user-dashboard {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

    .hero-user-dashboard::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    }


.hero-user-info {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    opacity: 0.95;
}

.hero-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: flex-end;
}

.status-text {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero-quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.hero-action-btn {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    font-size: 0.9rem;
}

    .hero-action-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: var(--accent-color);
        color: white;
        text-decoration: none;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    .hero-action-btn i {
        font-size: 1rem;
        opacity: 0.9;
        color: var(--accent-color);
    }

    .hero-action-btn:hover i {
        opacity: 1;
        transform: scale(1.1);
    }


/* Mobile Dashboard Toggle - Sticky Left Side */
.mobile-dashboard-toggle {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    margin: 0;
}

.hero-toggle-btn {
    width: 2px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 0.75rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    border-left: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    min-height: 100px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
}

    .hero-toggle-btn .toggle-icon {
        writing-mode: initial;
        transition: transform 0.3s ease;
        color: var(--primary-dark);
        font-size: 1rem;
    }

    .hero-toggle-btn[aria-expanded="true"] .toggle-icon {
        transform: rotate(180deg);
    }

    .hero-toggle-btn span {
        writing-mode: vertical-lr;
        text-orientation: mixed;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

/* Mobile Actions - Full Screen Overlay */
#mobileQuickActions {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    overflow-y: auto;
    padding: 2rem;
    display: none;
}

    #mobileQuickActions.show {
        display: block;
    }


/* Close button for mobile overlay */
.mobile-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.brands-grid {
    margin-top: 1rem;
}

.brand-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

    .brand-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        border-color: var(--accent-color);
    }

    .brand-card a {
        display: flex;
        flex-direction: column;
        height: 100%;
        text-decoration: none;
        color: inherit;
        padding: 2rem;
    }

        .brand-card a:hover {
            text-decoration: none;
            color: inherit;
        }

.brand-logo {
    display: block;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    height: 90px;
    padding: 1rem;
    border-radius: 8px;
}

    .brand-logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        filter: grayscale(20%);
        transition: all 0.3s ease;
    }

.brand-card:hover .brand-logo img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.brand-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

    .brand-content h3 {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 1rem;
        transition: color 0.3s ease;
    }

.brand-card:hover .brand-content h3 {
    color: var(--accent-color);
}

.brand-content p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}


.section-header {
    background-color: var(--background-light);
    padding: .5rem 1rem;
    position: relative;
}

.section-icon {
    position: absolute;
    top: -10px;
    right: -5px;
    width: 45px;
    height: 45px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .section-icon i {
        border-color: var(--border-color);
        color: var(--primary-dark);
        font-size: 1.1rem;
    }

.section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 0.5rem;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: var(--primary-color);
        border-radius: 2px;
    }

.section-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: .5rem;
    line-height: 1.6;
}

.user-dashboard {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--border-radius-lg);
    color: white;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

    .user-dashboard::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    }

.user-welcome {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.user-subtitle {
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.quick-action-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

    .quick-action-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
        color: white;
        text-decoration: none;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .quick-action-btn i {
        font-size: 1.1rem;
        opacity: 0.9;
    }

    .quick-action-btn:hover i {
        opacity: 1;
        transform: scale(1.1);
    }

@keyframes pulse-status {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.content-section,
.solutions-section {
    background-color: var(--background-light);
    border-left: 4px solid var(--primary-color);
    padding: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.contact-section {
    background-color: var(--background-light);
    border-left: 4px solid var(--primary-color);
    padding: 1rem;
    margin-top: 6rem;
    margin-bottom: 1rem;
}

.keylinks-section {
    padding: 1rem 0;
}

.keylink-card {
    height: 100%;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: white;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

    .keylink-card a {
        display: flex;
        flex-direction: column;
        text-decoration: none !important;
        color: inherit;
        height: 100%;
    }

    .keylink-card .card-body {
        padding: 1rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        height: 100%;
    }

.keylink-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.keylink-card:hover .keylink-icon {
    color: var(--primary-dark);
    transform: scale(1.1);
}

.keylink-image {
    width: 70px;
    height: 70px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    border: 2px solid var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.keylink-card:hover .keylink-image {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.keylink-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.35rem;
    transition: color 0.3s ease;
}

.keylink-card:hover h3 {
    color: var(--primary-color);
}

.keylink-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.3;
    margin: 0;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.keylink-card:hover p {
    color: #495057;
}

.solution-card {
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    text-decoration: none !important;
    color: inherit;
    background: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

    .solution-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--primary-color);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .solution-card:hover::before {
        transform: scaleX(1);
    }

    .solution-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        text-decoration: none !important;
        color: inherit;
    }

    .solution-card .card-body {
        padding: 2rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .solution-card h3 {
        color: #333;
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 1rem;
        transition: color 0.3s ease;
        line-height: 1.3;
    }

        .solution-card h3 img {
            max-height: 50px;
            width: auto;
            vertical-align: middle;
            display: block; /* Make image block level */
            margin: 0 auto; /* Center the image */
            margin-bottom: 1rem;
        }

    .solution-card:hover h3 {
        color: var(--primary-color);
    }

    .solution-card h5 {
        color: var(--primary-color);
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: .5rem;
        line-height: 1.4;
    }

    .solution-card .card-content {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .solution-card p {
        color: var(--text-muted);
        line-height: 1.6;
        margin-bottom: 1rem;
        font-size: 1rem;
    }

        .solution-card p:last-of-type {
            margin-top: auto;
            margin-bottom: 0;
            padding-top: 1rem;
        }

    /* Ensure button container stays at bottom */
    .solution-card .card-body > p:last-child {
        margin-top: auto;
        flex-shrink: 0;
    }

    /* Image alignment */
    .solution-card h3 img {
        max-height: 50px;
        width: auto;
        vertical-align: middle;
    }

.brand-section {
    margin: 2rem 0;
}

.brand-logo {
    max-height: 80px;
    width: auto;
    transition: all 0.3s ease;
}

    .brand-logo:hover {
        filter: grayscale(0%);
        transform: scale(1.05);
    }

.brochure-highlight-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.brochure-highlight-content {
    flex: 1;
    text-align: left;
}

    .brochure-highlight-content i {
        color: var(--accent-color);
        font-size: 3rem;
        margin-bottom: 1rem;
        display: block;
    }

    .brochure-highlight-content h3 {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 0.5rem;
    }

    .brochure-highlight-content p {
        color: var(--text-muted);
        margin: 0;
        font-size: 1rem;
    }

.brochure-highlight-action {
    flex-shrink: 0;
}

    .brochure-highlight-action a {
        flex-direction: row !important;
    }

.brochure-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--accent-color);
    white-space: nowrap;
}

    .brochure-cta-btn:hover {
        background: var(--primary-dark);
        color: var(--white);
        border: 2px solid var(--primary-dark);
        text-decoration: none;
    }

    .brochure-cta-btn i {
        font-size: 1rem;
        transition: transform 0.3s ease;
    }

    .brochure-cta-btn:hover i {
        transform: translateX(3px);
    }

.subdir-2 p a {
    margin-left: 1rem;
}

.subdir-2 h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color, #333);
    margin: .5rem 0 0.5rem 1rem;
    padding: 0.5rem 0rem;
    position: relative;
    display: inline-block;
    border-bottom: 2px solid var(--primary-color, #333);
}

.refrigerant {
    float: right;
    max-width: 80px;
    position: relative;
    top: -30px;
    right: -25px;
}

.std_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: #007bff;
    text-align: left;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid #007bff;
    padding: 0.5rem;
    font-size: 0.95rem;
    line-height: 1;
    border-radius: 0.25rem;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    width: 100%;
    box-sizing: border-box;
    min-height: 2rem;
    word-wrap: break-word;
    hyphens: auto;
}

    .std_button:hover {
        color: #fff;
        background-color: #007bff;
        border-color: #007bff;
        text-decoration: none;
    }

    .std_button:focus {
        color: #fff;
        background-color: #007bff;
        border-color: #007bff;
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        text-decoration: none;
    }

    .std_button:active {
        color: #fff;
        background-color: #0062cc;
        border-color: #005cbf;
        text-decoration: none;
    }

    .std_button:disabled {
        color: #007bff;
        background-color: transparent;
        opacity: 0.65;
        cursor: not-allowed;
    }

    /* Icon spacing */
    .std_button i {
        margin-right: .95rem;
        flex-shrink: 0;
        font-size: 0.9rem;
    }


.access-alert {
    border: 1px solid #f0cc15;
    background: linear-gradient(135deg, #fffbf0 0%, #fff8e1 100%);
    padding: 1.4rem;
    text-align: center;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    position: relative;
}

    .access-alert h5 {
        color: #856404;
        margin-bottom: 0.5rem;
        font-size: 1.25rem;
        font-weight: 600;
    }

        .access-alert h5 .fas,
        .access-alert h5 .far {
            margin-right: 0.75rem;
            color: #f0cc15;
        }

    .access-alert p {
        color: #6c757d;
        margin: 0;
        font-size: 1rem;
        line-height: 1.5;
    }

    .access-alert a {
        color: var(--primary-color);
        font-weight: 500;
        text-decoration: underline;
    }

        .access-alert a:hover {
            color: var(--primary-dark);
            text-decoration: none;
        }

.home-collapsible-section {
    margin-bottom: 1rem;
}

.home-section-header {
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    background-color: var(--background-light);
    padding: .5rem .5rem .5rem 1rem;
    position: relative;
    margin-bottom: 0;
}

    .home-section-header:hover {
        opacity: 0.8;
    }

    .home-section-header.active .section-chevron {
        transform: rotate(180deg);
    }

    .home-section-header[aria-expanded="true"] .section-chevron {
        transform: rotate(180deg);
    }

    .home-section-header .section-icon {
        position: absolute;
        top: -10px;
        right: -5px;
        width: 45px;
        height: 45px;
        background: var(--accent-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .home-section-header .section-icon i {
            border-color: var(--border-color);
            color: var(--primary-dark);
            font-size: 1.1rem;
        }

.customization-content label {
    margin-bottom: 0rem;
}

.anniversary-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 1.2rem 1.2rem;
    margin: 1rem 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(208, 189, 54, 0.1);
    text-align: center;
}

    .anniversary-section::before {
        content: '';
        position: absolute;
        top: -60px;
        right: -60px;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(208, 189, 54, 0.08) 0%, transparent 70%);
        border-radius: 50%;
    }

    .anniversary-section::after {
        content: '';
        position: absolute;
        bottom: -40px;
        left: -40px;
        width: 160px;
        height: 160px;
        background: radial-gradient(circle, rgba(51, 51, 51, 0.04) 0%, transparent 70%);
        border-radius: 50%;
    }

.partner-logo-corner {
    position: absolute;
    top: 20px;
    right: 20px;
}

    .partner-logo-corner img {
        max-width: 100%;
        opacity: 0.8;
        transition: all 0.3s ease;
    }

        .partner-logo-corner img:hover {
            opacity: 1;
            transform: scale(1.05);
        }

.anniversary-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #e0cd46 50%, #f4d03f 100%);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 35px rgba(208, 189, 54, 0.3), inset 0 2px 6px rgba(255, 255, 255, 0.2);
    position: relative;
}

    .anniversary-icon i {
        font-size: 2rem;
        color: var(--primary-dark);
    }

.sparkle {
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 0 10px currentColor;
}

.sparkle-1 {
    top: -5px;
    right: -5px;
    width: 16px;
    height: 16px;
    background: #f4d03f;
    color: rgba(244, 208, 63, 0.6);
}

.sparkle-2 {
    bottom: -3px;
    left: -3px;
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    color: rgba(208, 189, 54, 0.5);
}

.anniversary-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

    .anniversary-title .highlight {
        background: linear-gradient(135deg, var(--accent-color), #f4d03f);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.anniversary-text {
    max-width: 700px;
    margin: 0 auto;
}

    .anniversary-text p {
        font-size: 1.2rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

.partner-link {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid rgba(208, 189, 54, 0.3);
    transition: all 0.3s ease;
}

    .partner-link:hover {
        border-bottom-color: var(--accent-color);
    }

.quote-box {
    background: rgba(208, 189, 54, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid var(--accent-color);
    font-size: 1.1rem;
    color: var(--primary-color);
    font-style: italic;
    font-weight: 500;
}

    .quote-box .fas {
        color: var(--accent-color);
        font-size: 0.9rem;
    }

    .quote-box .fa-quote-left {
        margin-right: 0.5rem;
    }

    .quote-box .fa-quote-right {
        margin-left: 0.5rem;
    }

.partner-logo {
    margin-top: 2rem;
}

    .partner-logo img {
        max-width: 180px;
        opacity: 0.9;
        transition: all 0.3s ease;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    }

        .partner-logo img:hover {
            opacity: 1;
            transform: scale(1.05);
        }

.section-chevron {
    margin-right: 0.75rem;
    transition: none;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    order: -1;
}

.home-section-body {
    margin-top: 0;
}

    .home-section-body .section-description {
        margin-left: 0.5rem;
    }

    .home-section-body.collapse {
        margin: 0 !important;
        padding: 0 !important;
        transition: none !important;
        -webkit-transition: none !important;
        -moz-transition: none !important;
        -o-transition: none !important;
    }

        .home-section-body.collapse.show {
            margin: 0 !important;
            transition: none !important;
            -webkit-transition: none !important;
            -moz-transition: none !important;
            -o-transition: none !important;
        }

    .home-section-body.collapsing {
        transition: none !important;
        -webkit-transition: none !important;
        -moz-transition: none !important;
        -o-transition: none !important;
    }

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .pageright {
        float: none;
    }

    .refrigerant {
        float: right;
        max-width: 60px;
        position: relative;
        top: -10px;
        right: -15px;
    }

    .breadcrumb-item a, .breadcrumb-item.active {
        font-size: .85rem
    }

    .breadcrumb {
        font-size: 0.95rem;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        margin: 0 0.375rem 0;
    }

    .breadcrumb-item i {
        margin-right: 0.25rem;
    }

    .auto-grid-section {
        padding: 1.5rem 0;
    }

    .contact-section {
        margin-top: 2rem;
    }

    .auto-grid-row {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }


    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-section {
        padding: 2rem 0;
    }

    .brochure-highlight-card {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        text-align: center;
    }

    .brochure-highlight-content {
        text-align: center;
    }

        .brochure-highlight-content i {
            font-size: 2.5rem;
            margin-bottom: 0.75rem;
        }

        .brochure-highlight-content h3 {
            font-size: 1.25rem;
        }

    .brochure-highlight-action {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .brochure-cta-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
        width: auto;
        max-width: 100%;
    }

    .keylink-icon {
        font-size: 2.5rem;
    }

    .keylink-image {
        width: 60px;
        height: 60px;
    }

    .solution-card .card-body {
        padding: 1.5rem;
    }

    .access-alert {
        padding: 1.5rem;
    }

    .brand-logo {
        max-height: 60px;
    }

    .brand-card a {
        padding: 1.5rem;
    }

    .brand-logo {
        height: 100px;
    }

    .brand-content h3 {
        font-size: 1.25rem;
    }

    .brand-content p {
        font-size: 0.9rem;
    }
  
    .section-header {
        padding: .8rem .8rem;
    }

    .home-section-header .section-icon, .section-icon {
        display: none;
    }
       
    .section-title {
        font-size: 1rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

}

@media (max-width: 991px) {
    .hero-quick-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 3rem;
        padding: 0;
        border: none;
    }

    .hero-action-btn {
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.2);
        padding: 1.5rem;
        border-radius: var(--border-radius);
        font-size: 1rem;
        justify-content: flex-start;
    }

        .hero-action-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(10px);
        }
}

@media (min-width: 992px) {
    .mobile-dashboard-toggle {
        display: none;
    }
}



@media (max-width: 576px) {
    .breadcrumb {
        font-size: 0.75rem;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        margin: 0 0.25rem;
    }

    .auto-grid-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .brochure-highlight-card {
        padding: 1rem;
        gap: 1rem;
    }

    .brochure-highlight-content i {
        font-size: 2rem;
    }

    .brochure-highlight-content h3 {
        font-size: 1.125rem;
    }

    .brochure-highlight-content p {
        font-size: 0.9rem;
    }

    .brochure-cta-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .keylinks-section .col-lg-4 {
        margin-bottom: 1.5rem;
    }
}
