/* Base Variables */
:root {
    --primary-color: #1b4332;
    --secondary-color: #ddb892;
    --accent-color: #b08d57;
    --hover-color: #2d6a4f;
    --text-color: #333333;
    --light-color: #ffffff;
    --glass-bg: rgba(27, 67, 50, 0.1);
    --glass-border: rgba(221, 184, 146, 0.2);
    --gradient-start: #b08d57;
    --gradient-end: #ddb892;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --green-gradient: linear-gradient(135deg, 
        var(--primary-color),
        var(--hover-color)
    );
    --gold-gradient: linear-gradient(135deg, 
        var(--gradient-start),
        var(--gradient-end)
    );
    --gold-brown-gradient: linear-gradient(135deg,
        #b08d57,
        #816653,
        #b08d57
    );
    --gold-shine: linear-gradient(
        90deg,
        transparent,
        rgba(221, 184, 146, 0.3),
        transparent
    );
}

/* Global Styles */
body {
    color: var(--text-color);
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, 
        rgba(27, 67, 50, 0.05) 0%,
        rgba(221, 184, 146, 0.1) 50%,
        rgba(176, 141, 87, 0.05) 100%
    );
    min-height: 100vh;
}

.centered-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Main Heading Styles */
.main-heading {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.main-heading-hover {
    background: var(--green-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: var(--transition);
}

.main-heading-hover:hover {
    transform: translateY(-3px);
}

.highlight-word {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
    transition: var(--transition);
}

.highlight-word::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.highlight-word:hover {
    transform: translateY(-2px);
}

.highlight-word:hover::after {
    transform: scaleX(1);
}

/* Highlighted Text Section */
.highlighted-text {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(27, 67, 50, 0.1);
    border: 1px solid var(--glass-border);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.highlighted-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    text-align: center;
}

/* Carousel Styles */
.carousel-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(27, 67, 50, 0.15);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.carousel-item img {
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
    transition: var(--transition);
}

.carousel-indicators .active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* Coverage Section */
.avtoodg-container {
    margin: 4rem 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.avtoodg-content-wrapper {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(27, 67, 50, 0.1);
    border: 1px solid var(--glass-border);
}

.avtoodg-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.coverage-heading {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.coverage-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.avtoodg-column ul {
    list-style: none;
    padding: 0;
}

.avtoodg-column li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    transition: transform 0.3s ease, padding-left 0.3s ease;
}

.avtoodg-column li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    transform: scale(1);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.avtoodg-column li:hover::before {
    transform: scale(1.2);
    color: var(--primary-color);
}

.avtoodg-column li:hover {
    transform: translateX(5px);
    padding-left: 2.5rem;
    color: var(--primary-color);
}

/* Button Styles */
.btn.kupi {
    background: var(--gold-gradient);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-block;
    margin-top: 2rem;
    z-index: 1;
}

.btn.kupi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--green-gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.btn.kupi::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.8s ease;
}

.btn.kupi:hover {
    transform: translateY(-3px);
    color: var(--light-color);
    box-shadow: 0 10px 20px rgba(27, 67, 50, 0.15);
}

.btn.kupi:hover::before {
    opacity: 1;
}

.btn.kupi:hover::after {
    transform: translateX(100%) rotate(45deg);
}

/* Additional Info Section */
.additional-info {
    text-align: center;
    margin: 2rem 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.additional-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.additional-info a:hover {
    color: var(--accent-color);
}

/* Additional Content Section */
.additional-content {
    text-align: center;
    margin: 3rem 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1s forwards;
}

.additional-content .btn {
    background: var(--green-gradient);
    color: var(--light-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: var(--transition);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.additional-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(27, 67, 50, 0.15);
}

.additional-content em {
    color: var(--primary-color);
    font-style: italic;
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ Section */
.faq-container {
    margin: 4rem 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.2s forwards;
}

.accordion-item {
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(27, 67, 50, 0.1);
}

.accordion-button {
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    padding: 1.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.accordion-button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--primary-color);
    font-weight: 700;
}

.accordion-button:not(.collapsed)::before {
    opacity: 0.9;
}

.accordion-button span {
    position: relative;
    z-index: 2;
}

.accordion-button::after {
    background-image: none !important;
    content: '→';
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    z-index: 2;
    transform: rotate(0deg);
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(90deg);
    color: var(--primary-color);
    font-weight: 700;
}

.accordion-button:hover::after {
    transform: translateX(5px);
}

.accordion-button:not(.collapsed):hover::after {
    transform: rotate(90deg) translateX(5px);
}

.accordion-body {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    transform-origin: top;
    animation: accordionEnter 0.5s ease forwards;
    border-top: 1px solid var(--glass-border);
}

.accordion-collapse.collapse.show {
    animation: accordionEnter 0.5s ease forwards;
}

.accordion-collapse.collapse {
    animation: accordionExit 0.5s ease forwards;
}

@keyframes accordionEnter {
    from {
        opacity: 0;
        transform: scaleY(0);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

@keyframes accordionExit {
    from {
        opacity: 1;
        transform: scaleY(1);
    }
    to {
        opacity: 0;
        transform: scaleY(0);
    }
}

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gold-gradient);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(27, 67, 50, 0.2);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    background: var(--green-gradient);
    color: var(--light-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .centered-content {
        padding: 1rem;
    }

    .main-heading {
        font-size: 2rem;
    }

    .highlighted-text {
        padding: 1.5rem;
    }

    .highlighted-text p {
        font-size: 1rem;
    }

    .carousel-item img {
        height: 300px;
    }

    .avtoodg-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .avtoodg-content-wrapper {
        padding: 1.5rem;
    }

    .coverage-heading {
        font-size: 1.2rem;
    }

    .btn.kupi {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .additional-content .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .accordion-button {
        padding: 1rem;
        font-size: 1rem;
    }

    .accordion-body {
        padding: 1rem;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* Enhanced Carousel Animations */
.carousel-item {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item img {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.8s ease;
}

.carousel-item.active img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.carousel-control-prev,
.carousel-control-next {
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.carousel-container:hover .carousel-control-prev,
.carousel-container:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev {
    transform: translateX(-10px);
}

.carousel-control-next {
    transform: translateX(10px);
}

.carousel-container:hover .carousel-control-prev {
    transform: translateX(0);
}

.carousel-container:hover .carousel-control-next {
    transform: translateX(0);
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    transform: scale(0.8);
}

.carousel-indicators [data-bs-target]::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.carousel-indicators .active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

.carousel-indicators .active::before {
    opacity: 1;
    animation: pulseIndicator 2s infinite;
}

@keyframes pulseIndicator {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

/* Hero Section */
.hero2 {
    position: relative;
    padding: 10rem 2rem;
    background: linear-gradient(135deg,
        rgba(27, 67, 50, 0.98),
        rgba(45, 106, 79, 0.98)
    );
    overflow: hidden;
    border-radius: 0 0 30px 30px;
    margin-bottom: 2rem;
}

.hero2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        transparent 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
}

.hero2::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/images/pattern.png') repeat;
    opacity: 0.1;
    animation: patternMove 20s linear infinite;
    z-index: 0;
}

.welcome2 {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.gradient-text {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 2rem;
    background: var(--gold-brown-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0;
    transform: translateY(-30px);
    filter: blur(10px);
    animation: dramaticFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards,
               gradientMove 5s ease infinite;
    position: relative;
    text-shadow: 0 0 30px rgba(221, 184, 146, 0.3);
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: var(--gold-brown-gradient);
    background-size: 200% auto;
    animation: shimmer 3s infinite;
}

.subtitle {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--secondary-color);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(-30px);
    filter: blur(10px);
    animation: dramaticFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
    text-shadow: 0 0 20px rgba(221, 184, 146, 0.2);
}

/* Cards Container */
.cards-container {
    padding: 2rem 4rem;
    margin-top: 2rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(auto, 450px));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

/* Card Styles */
.card {
    background: rgba(255, 255, 255, 0.98);
    border: none !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    height: 100%;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: cardFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    box-shadow: 0 10px 30px rgba(27, 67, 50, 0.1);
    width: 100%;
    margin: 0;
    transform-origin: center;
    will-change: transform;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(221, 184, 146, 0.2) 50%,
        transparent 100%
    );
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.8s ease;
    z-index: 2;
}

.card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg,
        #b08d57,
        #ddb892,
        #b08d57
    );
    background-size: 200% 200%;
    border-radius: 12px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.card:hover {
    transform: translateY(-20px) scale(1.05);
    border-radius: 20px !important;
    box-shadow: 
        0 30px 60px rgba(27, 67, 50, 0.15),
        0 0 30px rgba(176, 141, 87, 0.2);
}

.card:hover::before {
    transform: translateX(100%) rotate(45deg);
}

.card:hover::after {
    opacity: 1;
    border-radius: 22px;
    animation: borderGradient 3s ease infinite;
}

.card-img-wrapper {
    border-radius: 15px 15px 0 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    position: relative;
    height: 400px;
}

.card:hover .card-img-wrapper {
    border-radius: 25px 25px 0 0;
}

.card-img-top {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card:hover .card-img-top {
    transform: scale(1.2);
}

.card-body {
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.95),
        rgba(255, 255, 255, 0.98)
    );
    overflow: hidden;
}

.card-body::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(221, 184, 146, 0.4),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.card:hover .card-body::before {
    transform: translateX(100%);
}

.card-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: var(--gold-brown-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
    animation: gradientMove 5s ease infinite;
    padding-bottom: 1rem;
}

.card:hover .card-title {
    transform: translateY(-5px) scale(1.05);
    letter-spacing: 0.5px;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-brown-gradient);
    background-size: 200% auto;
    transition: width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card:hover .card-title::after {
    width: 100%;
}

/* Animations */
@keyframes dramaticFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-30px);
        filter: blur(10px);
    }
    50% {
        opacity: 0.5;
        transform: translateY(-15px);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes cardFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 100% 100%; }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes borderGradient {
    0% {
        background-position: 0% 0%;
        box-shadow: 0 0 20px rgba(176, 141, 87, 0.2);
    }
    50% {
        background-position: 100% 100%;
        box-shadow: 0 0 30px rgba(176, 141, 87, 0.3);
    }
    100% {
        background-position: 0% 0%;
        box-shadow: 0 0 20px rgba(176, 141, 87, 0.2);
    }
}

/* Responsive Design */
@media (max-width: 1400px) {
    .cards-container {
        padding: 2rem;
    }
    .cards-grid {
        gap: 2rem;
    }
    .card-img-wrapper {
        height: 380px;
    }
}

@media (max-width: 1200px) {
    .cards-grid {
        max-width: 900px;
    }
    .card-img-wrapper {
        height: 360px;
    }
}

@media (max-width: 992px) {
    .cards-grid {
        gap: 1.5rem;
        max-width: 800px;
    }
    .card-img-wrapper {
        height: 340px;
    }
    .card-body {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .cards-container {
        padding: 1.5rem;
    }
    .cards-grid {
        grid-template-columns: minmax(auto, 400px);
        gap: 2rem;
    }
    .card-img-wrapper {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .cards-container {
        padding: 1rem;
    }
    .card-img-wrapper {
        height: 300px;
    }
    .card-body {
        padding: 2rem 1.5rem;
    }
}

/* Container Styling */
.container {
    padding: 2rem 15px;
}

.py-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

/* Row and Column Spacing */
.row {
    margin: -15px;
}

.col-lg-3, .col-md-6, .col-12 {
    padding: 15px;
}

/* Card Animation Sequence */
.col-lg-3:nth-child(1) .card { animation: fadeInUp 0.5s ease-out 0.1s backwards; }
.col-lg-3:nth-child(2) .card { animation: fadeInUp 0.5s ease-out 0.2s backwards; }
.col-lg-3:nth-child(3) .card { animation: fadeInUp 0.5s ease-out 0.3s backwards; }
.col-lg-3:nth-child(4) .card { animation: fadeInUp 0.5s ease-out 0.4s backwards; }
.col-lg-3:nth-child(5) .card { animation: fadeInUp 0.5s ease-out 0.5s backwards; }

/* Hover Effects Enhancement */
.card {
    position: relative;
    isolation: isolate;
}

.card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gold-gradient);
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.card:hover::after {
    opacity: 1;
    animation: borderGlow 2s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.02);
    }
}

/* Main Content Background */
main.container {
    background: linear-gradient(135deg, 
        rgba(27, 67, 50, 0.02),
        rgba(45, 106, 79, 0.02)
    );
    border-radius: 20px;
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

/* Card Link Enhancement */
.text-decoration-none {
    display: block;
    position: relative;
}

.text-decoration-none:focus {
    outline: none;
}

.text-decoration-none:focus .card {
    box-shadow: 0 0 0 3px var(--accent-color);
}
