.dropdown-menu {
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    background-color: #161616;
    color: white;
}

.content-card {
    background-color: #161616 !important;
    color: white;
    padding: 2rem !important;
    border: 2px solid #EDB115;
    transition: all 0.3s ease;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.permission-conditions {
    padding-left: 0;
    list-style-position: inside;
    margin-bottom: 2rem;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.permission-conditions li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
    text-align: left;
}

.content-card h2 {
    font-weight: 600;
    color: white;
    font-size: 2rem;
    margin: 1.5rem 0;
    letter-spacing: 0.5px;
}

.btn-outline-light {
    background-color: transparent;
    border: 1px solid white;
    padding: 10px 25px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: rgb(255, 255, 255);
    transform: translateY(-2px);
}

/* HEADER FLYER */
.flyer-wrapper {
    width: 77%;
    margin: 0 auto;
    max-width: 1600px;
}

.flyer-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-height: 400px;
    width: 100%;
}

.flyer-image {
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    max-height: 400px;
}

.flyer-container:hover .flyer-image {
    transform: scale(1.02);
}

.flyer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 20%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0) 100%);
    display: flex;
    align-items: center;
}

.flyer-content {
    padding: 2rem;
    color: white;
    max-width: 50%;
}

.flyer-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.flyer-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* MAIN CONTENT LAYOUT */
.main-content {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    min-height: 80vh;
}

.desktop-layout {
    display: block;
}

/* INTRODUCTION SECTION */
.intro-section {
    padding: 2rem 0;
}

.intro-icon {
    color: #EDB115;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease;
}

.intro-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    position: relative;
}

.intro-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #EDB115, #F4C430);
    border-radius: 2px;
}

.intro-text {
    color: #ccc;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* PERMISSION CARD COMPONENTS */
.permission-card {
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(237, 177, 21, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.permission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #EDB115, #F4C430, #EDB115);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

.permission-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(237, 177, 21, 0.2);
}

.card-header-custom {
    padding: 2.5rem 2rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(237, 177, 21, 0.1), rgba(244, 196, 48, 0.05));
}

.header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #EDB115, #F4C430);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(237, 177, 21, 0.3);
}

.header-icon i {
    color: #000;
}

.card-title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

.card-body-custom {
    padding: 2rem;
}

/* CONDITIONS GRID */
.conditions-grid {
    display: grid;
    gap: 2.5rem;
}

.condition-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 15px;
    border: 1px solid rgba(237, 177, 21, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.condition-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #EDB115, #F4C430);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.condition-item:hover {
    background: linear-gradient(135deg, rgba(237, 177, 21, 0.1), rgba(244, 196, 48, 0.05));
    border-color: rgba(237, 177, 21, 0.3);
    transform: translateX(5px);
}

.condition-item:hover::before {
    opacity: 1;
}

.condition-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(237, 177, 21, 0.2), rgba(244, 196, 48, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(237, 177, 21, 0.3);
}

.condition-icon i {
    color: #EDB115;
}

.condition-content h4 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 0.8rem 0;
    letter-spacing: 0.3px;
}

.condition-content p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.condition-content strong {
    color: #EDB115;
    font-weight: 600;
}

/* CONTACT SECTION */
.contact-section {
    margin-top: 3rem;
}

.contact-card {
    background: linear-gradient(135deg, #EDB115, #F4C430);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(237, 177, 21, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(237, 177, 21, 0.3);
}

.contact-card:hover::before {
    transform: rotate(45deg) scale(1.1);
}

.contact-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.contact-content h3 {
    color: #000;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    letter-spacing: 0.5px;
}

.contact-content p {
    color: rgba(0, 0, 0, 0.8);
    font-size: 1.1rem;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

.contact-decoration {
    font-size: 4rem;
    color: rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

/* BUTTONS & LINKS */
.catalog-link {
    color: #EDB115 !important;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.catalog-link:hover {
    opacity: 0.9;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #000, #333);
    border: none;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, #333, #555);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #fff;
}

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

@keyframes gradientShift {
    0%, 100% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
}

/* RESPONSIVE DESIGN */

@media (min-width: 1201px) {
    .desktop-layout {
        display: flex;
        gap: 3rem;
        align-items: flex-start;
    }
    
    .intro-section {
        flex: 0 0 35%;
        position: sticky;
        top: 5rem;
        padding: 2rem 0;
    }
    
    .content-section {
        flex: 1;
    }
}

@media (max-width: 1200px) {
    .desktop-layout {
        display: block;
    }
    
    .intro-section {
        margin-bottom: 3rem;
    }
}

@media (max-width: 992px) {
    .intro-title {
        font-size: 2.2rem;
    }
    
    .card-title {
        font-size: 2rem;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .contact-decoration {
        font-size: 3rem;
    }
    
    .flyer-content {
        max-width: 70%;
        padding: 1.5rem;
    }
    
    .flyer-content h3 {
        font-size: 1.8rem;
    }
    
    .flyer-content p {
        font-size: 1rem;
    }
    
    .flyer-wrapper {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .intro-section {
        padding: 1.5rem 0;
        margin-bottom: 3rem !important;
    }
    
    .intro-title {
        font-size: 2rem;
        margin-bottom: 2rem !important;
    }
    
    .intro-text {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .flyer-wrapper {
        width: 95%;
    }
    
    .flyer-container {
        max-height: 300px;
        margin: 2rem 0;
    }
    
    .flyer-content {
        max-width: 85%;
        padding: 1.2rem;
    }
    
    .flyer-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }
    
    .flyer-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    
    .flyer-overlay {
        background: linear-gradient(to right, rgba(0,0,0,0.85) 30%, rgba(0,0,0,0.6) 70%, rgba(0,0,0,0.2) 100%);
    }
    
    .card-header-custom {
        padding: 2rem 1.5rem 1rem;
    }
    
    .card-body-custom {
        padding: 1.5rem;
    }
    
    .condition-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem 1rem;
        align-items: center;
    }
    
    .condition-icon {
        align-self: center;
    }
    
    .condition-content {
        text-align: center;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-content h3 {
        font-size: 1.5rem;
    }
    
    .contact-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .intro-section {
        padding: 1rem 0;
        margin-bottom: 2rem !important;
    }
    
    .intro-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .intro-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .flyer-container {
        max-height: 250px;
        margin: 1.5rem 0;
    }
    
    .flyer-content {
        max-width: 90%;
        padding: 1rem;
    }
    
    .flyer-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
    }
    
    .flyer-content p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }
    
    .flyer-overlay {
        background: linear-gradient(to right, rgba(0,0,0,0.9) 40%, rgba(0,0,0,0.7) 80%, rgba(0,0,0,0.3) 100%);
    }
    
    .card-title {
        font-size: 1.8rem;
    }
    
    .condition-content h4 {
        font-size: 1.2rem;
    }
    
    .condition-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .flyer-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .flyer-content p {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .flyer-container {
        max-height: 220px;
    }
}
