/* index-page.css - Homepage styles extracted from inline <style> block */

/* Conversion-focused styles */
:root {
    --primary-color: #a38300;
    --primary-dark: #8a6f00;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-bg: #f8f9fa;
    --card-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --card-shadow-hover: 0 1rem 2rem rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 50%, rgba(240, 147, 251, 0.8) 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: gradientShift 8s ease-in-out infinite;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

@keyframes gradientShift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.bg-success-soft {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.9), rgba(52, 152, 219, 0.9)) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
    animation: fadeInUp 1s ease-out 0.6s both;
    font-weight: 600;
}

.trust-indicators {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.8s both;
}

.trust-item {
    text-align: center;
    position: relative;
}

.trust-number {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
    text-shadow: none;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 0.9rem;
    color: #495057;
    font-weight: 600;
    text-shadow: none;
}

.hero-search-section {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    margin-top: 2.5rem;
    animation: fadeInUp 1s ease-out 1s both;
    position: relative;
    overflow: hidden;
}

.hero-search-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.search-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    position: relative;
}

.search-subtitle {
    color: #495057;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.search-input-group {
    display: flex;
    align-items: stretch;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    border-radius: 22px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.search-input-group:hover {
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.25);
    transform: translateY(-2px);
}

.search-input-group .input-group {
    flex: 1;
    display: flex;
    align-items: stretch;
}

.input-group-prepend {
    display: flex;
}

.input-group-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 20px 0 0 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.3rem;
    font-size: 1.5rem;
    height: 65px;
    min-height: 65px;
    transition: all 0.3s ease;
}

.search-input {
    height: 65px;
    min-height: 65px;
    width: 100%;
    border: none;
    border-radius: 0;
    font-size: 1.05rem;
    padding: 0 1.5rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.98);
    line-height: 1.5;
    box-sizing: border-box;
    color: #2c3e50;
}

.search-input::placeholder {
    font-size: 0.9rem;
    color: #8e9aaf;
    opacity: 0.8;
    font-weight: 400;
}

.search-input:focus {
    background: #fff;
    outline: none;
    box-shadow: none;
}

.search-input-group:focus-within {
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.35);
    transform: translateY(-3px);
}

.search-input-group:focus-within .input-group-text {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.search-input-group:focus-within .btn-search {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.btn-search {
    height: 65px;
    min-width: 100px;
    width: 100px;
    border: none;
    border-radius: 0 20px 20px 0;
    font-weight: 600;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: white;
    cursor: pointer;
}

.btn-search::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-search:hover::before {
    width: 300px;
    height: 300px;
}

.btn-search:hover {
    transform: scale(1.03);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.btn-search:active {
    transform: scale(0.98);
}

.search-help {
    color: #6c757d;
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

.hero-image-container {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease-out 0.8s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.main-hero-img {
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.main-hero-img:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

#petCarousel {
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

#petCarousel .carousel-indicators {
    bottom: 15px;
    margin-bottom: 0;
}

#petCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background-color: transparent;
    margin: 0 5px;
    transition: all 0.3s ease;
}

#petCarousel .carousel-indicators button.active {
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

#petCarousel .carousel-item {
    transition: transform 0.8s ease-in-out;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-stat {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 1.2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 4s ease-in-out infinite;
    transition: var(--transition);
}

.floating-stat:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-1 {
    top: 15%;
    right: -15%;
    animation-delay: 0s;
}

.stat-2 {
    bottom: 20%;
    left: -15%;
    animation-delay: 2s;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.stat-text {
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    font-size: 0.95rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-8px) rotate(1deg); }
    66% { transform: translateY(-4px) rotate(-1deg); }
}

/* Quick Register Section */
.quick-register-section {
    margin: -60px 0 80px;
    position: relative;
    z-index: 10;
}

.quick-register-card {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 50%, #ff9ff3 100%);
    color: white;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-register-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: shimmerBg 4s ease-in-out infinite;
}

@keyframes shimmerBg {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.quick-register-content {
    position: relative;
    z-index: 2;
}

.quick-register-content h3 {
    font-weight: 800;
    font-size: 1.6rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.quick-register-content p {
    font-size: 1.15rem;
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.pulse {
    animation: pulse 2s infinite;
    position: relative;
    z-index: 2;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 12px 35px rgba(255, 193, 7, 0.6); }
    100% { transform: scale(1); box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4); }
}

/* Section Styling */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 600;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    color: white;
    box-shadow: var(--card-shadow);
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Final CTA Section */
.final-cta-section {
    margin-top: 4rem;
}

.cta-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    color: white;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: shimmerBg 4s ease-in-out infinite;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    line-height: 1.5;
}

.cta-benefits {
    position: relative;
    z-index: 2;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.benefit-item i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.btn-cta {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border: none;
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.6);
    background: linear-gradient(135deg, #ff9800 0%, #ffc107 100%);
    color: #2c3e50;
}

.btn-cta small {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: normal;
    opacity: 0.9;
}

.security-badges {
    position: relative;
    z-index: 2;
}

.security-badges small {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Compatibility Section */
.compatibility-section {
    margin-top: 3rem;
}

.compatibility-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.compatibility-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.compatibility-text {
    color: #6c757d;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.microchip-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.brand-tag {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.brand-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Legal Notice */
.legal-notice {
    margin-top: 2rem;
}

.legal-card {
    background: rgba(248, 249, 250, 0.8);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.legal-text {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .cta-title {
        font-size: 1.6rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .btn-cta {
        width: 100%;
        margin-top: 1rem;
    }

    .benefit-item {
        justify-content: center;
        text-align: center;
    }

    .microchip-brands {
        gap: 0.5rem;
    }

    .brand-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .compatibility-card {
        padding: 2rem 1.5rem;
    }

    .legal-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
        min-height: 80vh;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .trust-indicators {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .trust-number {
        font-size: 1.8rem;
    }

    .trust-label {
        font-size: 0.8rem;
    }

    .search-input-group {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-search {
        width: 80px;
        min-width: 80px;
        height: 55px;
        min-height: 55px;
        font-size: 1rem;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .input-group-text {
        padding: 0 1rem;
        font-size: 1.2rem;
        border-radius: 15px 0 0 15px;
        height: 55px;
        min-height: 55px;
    }

    .search-input {
        padding: 0 1rem;
        font-size: 0.95rem;
        height: 55px;
        min-height: 55px;
        border-radius: 0 15px 15px 0;
    }

    .quick-register-card {
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .floating-stat {
        position: static;
        margin: 1rem 0;
    }

    .stat-1, .stat-2 {
        position: static;
        display: inline-flex;
        margin: 0.5rem;
    }
}

.nav-tabs {
    --bs-nav-tabs-border-width: 0px;
}

/* Enhanced Tab Navigation */
.content-tabs.nav-tabs {
    border: none;
    margin-bottom: -2px;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: transparent;
    padding: 1px;
    position: relative;
    z-index: 10;
}

.content-tabs .nav-item {
    margin: 0;
    margin-right: 4px;
}

.content-tabs .nav-item:last-child {
    margin-right: 0;
}

.content-tabs .nav-link {
    position: relative;
    color: #6c757d !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(163, 131, 0, 0.15);
    border-bottom: none;
    border-radius: 15px 15px 0 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.95), rgba(248,249,250,0.95));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.content-tabs .nav-link i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.content-tabs .nav-link:hover {
    color: var(--primary-color) !important;
    background: linear-gradient(to bottom, #fff, rgba(255,255,255,0.98));
    transform: translateY(-2px);
    border-color: rgba(163, 131, 0, 0.3);
    box-shadow: 0 4px 12px rgba(163, 131, 0, 0.15);
}

.content-tabs .nav-link:hover i {
    transform: scale(1.15);
}

.content-tabs .nav-link.active {
    color: var(--primary-color) !important;
    background: #fff;
    font-weight: 700;
    border: 2px solid rgba(163, 131, 0, 0.4);
    border-bottom: 2px solid #fff;
    box-shadow: 0 -2px 8px rgba(163, 131, 0, 0.1);
    transform: translateY(0);
    z-index: 15;
    position: relative;
    margin-bottom: -2px;
}

.content-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: -2px;
    right: -2px;
    height: 3px;
    background: #fff;
    z-index: 20;
}

.content-tabs .nav-link.active i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.tab-content {
    background: #fff;
    padding: 2.5rem !important;
    border: 2px solid rgba(163, 131, 0, 0.4);
    border-radius: 0 15px 15px 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    margin-top: 0;
    position: relative;
    z-index: 5;
}

/* Mobile Accordion Styles */
.mobile-accordion {
    display: none;
}

.mobile-accordion .accordion-item {
    background: white;
    border: 2px solid rgba(163, 131, 0, 0.15);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mobile-accordion .accordion-item:hover {
    border-color: rgba(163, 131, 0, 0.3);
    box-shadow: 0 4px 12px rgba(163, 131, 0, 0.15);
}

.mobile-accordion .accordion-header {
    margin: 0;
}

.mobile-accordion .accordion-button {
    background: linear-gradient(to right, rgba(255,255,255,0.95), rgba(248,249,250,0.95));
    color: #6c757d;
    font-weight: 600;
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-accordion .accordion-button i.main-icon {
    font-size: 1.3rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.mobile-accordion .accordion-button .chevron {
    margin-left: auto;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.mobile-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 2px 8px rgba(163, 131, 0, 0.2);
}

.mobile-accordion .accordion-button:not(.collapsed) i {
    color: white;
}

.mobile-accordion .accordion-button:not(.collapsed) .chevron {
    transform: rotate(180deg);
}

.mobile-accordion .accordion-button::after {
    display: none;
}

.mobile-accordion .accordion-collapse {
    border-top: 2px solid rgba(163, 131, 0, 0.1);
}

.mobile-accordion .accordion-body {
    padding: 1.5rem;
    background: white;
}

@media (max-width: 768px) {
    .content-tabs,
    .tab-content {
        display: none !important;
    }

    .mobile-accordion {
        display: block;
    }
}

@media (min-width: 769px) {
    .content-tabs,
    .tab-content {
        display: flex !important;
    }

    .tab-content {
        display: block !important;
    }

    .mobile-accordion {
        display: none !important;
    }
}
