/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Icons footer */
.footer-buttons .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; /* Ajusta el ancho según necesites */
    height: 40px; /* Ajusta la altura según necesites */
    padding: 0;
}

.footer-buttons .btn-outline i {
    font-size: 1.5rem; /* Ajusta el tamaño del ícono */
    margin: 0;
}

/* Header */
.header {
    background-color: transparent;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: background-color 0.4s ease-in-out, backdrop-filter 0.4s ease-in-out;
}

.header.scrolled {
    background-color: #333;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.header.scrolled .nav-link {
    color: #FFFFFF; /* Color oscuro para mejor contraste con el fondo dorado */
}

.header.scrolled .nav-link:hover {
    color: #b29a2a; /* Mantiene el color de hover */
}

.header.scrolled .nav-toggle span {
    background: #FFFFFF; /* Color oscuro para las líneas del menú hamburguesa */
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .logo {
    height: 45px;
    width: auto;
}

.nav-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    background: #845e00;
    width: 300px;
    height: 100vh;
    padding: 80px 30px 30px;
    z-index: 1000;
}

.nav-menu.active {
    display: block;
}

.nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-list {
    list-style: none;
}

.nav-item {
    margin-bottom: 20px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-link:hover {
    color: #b29a2a;
    transition: color 0.3s ease;
}

.dropdown-menu {
    list-style: none;
    margin-top: 10px;
    margin-left: 20px;
}

.dropdown-menu li {
    margin-bottom: 10px;
}

.dropdown-menu a {
    color: #ccc;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 5px 0;
    display: block;
}

.dropdown-menu a:hover {
    color: #a43651;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: white;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #000;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 60%;
}

.hero-subtitle {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-title {
    font-size: 70px;
    font-weight: 600;
    line-height: 100%;
    font-style: normal;
}

.live-text {
    color: darkgoldenrod;
}

.btn-hero {
    display: inline-block;
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: white;
    color: #322427;
}

/* Button Styles */
.btn-primary {
    background: #322427;
    color: white;
    border: 2px solid #322427;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #a43651;
    border-color: #a43651;
}

.btn-secondary {
    background: transparent;
    color: #322427;
    border: 2px solid #322427;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #322427;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #a0850a;
    border: 2px solid #a0850a;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #a0850a;
    color: white;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 450;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: white;
    color: #322427;
}

/* Section Styles */
.section-subtitle {
    color: #826b00;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle-copy {
    color: #b89800;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 100px 0 80px;
    background: white;
}

.about-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-content p strong {
    color: #333;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: #f9f9f9;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #937900;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.contact-section {
    text-align: center;
}

/* Content Hub Section */
.content-hub-section {
    padding: 80px 0;
    background: #6b6b6b;
    color: black;
    position: relative;
    z-index: 1;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.content-hub-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

/* Eleva el contenido por encima del overlay */
.content-hub-section > .container {
    position: relative;
    z-index: 1;
}

.content-hub-section .section-title {
    color: white;
}

.content-hub-section .section-description {
    color: #ececec;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    min-height: 300px;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    background-position-x: inherit;
    background-position-y: inherit;
    background-size: inherit;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease-in-out;
    z-index: 0;
}

.service-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    color: white;
}

.service-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-content p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.5;
}

.service-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #b29a2a;
}

.service-link::after {
    font-size: 1.2rem;
}

/* Competitions Section */
.competitions-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.competitions-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    align-items: center;
    margin-top: 50px;
}

.competitions-logos img {
    max-width: 100%;
    height: 60px;
    object-fit: contain;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.competitions-logos img:hover {
    opacity: 1;
}

/* Insights Section */
.insights-section {
    padding: 80px 0;
    background: white;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.insight-card {
    background: #333;
    border-radius: 12px;
    overflow: hidden;
    color: white;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    position: relative;
    background-size: cover;
    background-position: center;
}

.insight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    pointer-events: none;
}


.insight-product {
    background: #333;
    border-radius: 12px;
    overflow: hidden;
    color: white;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    position: relative;
    background-size: cover;
    background-position: center;
}

.insight-product::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Asegura que el contenido esté encima del overlay */
.insight-content {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.insight-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 80px;
    line-height: 1.3;
}

.insight-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.tagf {
    background: rgba(75, 75, 75, 0.2);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.insight-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.9rem;
    color: #ccc;
}

.browse-insights {
    text-align: center;
}

/* Footer */
.footer {
    background: #e5e5e5;
    padding: 60px 0 40px;
}

.footer-brand {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    height: 65px;
    width: auto;
}

.footer-buttons {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #b29a2a;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #ccc;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding-top: 80px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }

    .footer-buttons {
        align-items: center;
    }

    .nav-menu {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .competitions-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .subscribers-logos {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop Navigation */
@media (min-width: 769px) {
    .nav-menu {
        display: block;
        position: static;
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
    }

    .nav-close {
        display: none;
    }

    .nav-list {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .nav-item {
        margin-bottom: 0;
        position: relative;
    }

    .nav-link {
        padding: 10px 0;
        border-bottom: none;
        font-size: 1rem;
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: #322427;
        padding: 20px;
        border-radius: 8px;
        margin-top: 10px;
        margin-left: 0;
        min-width: 250px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    .nav-item:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-toggle {
        display: none;
    }
}

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

.hero-content {
    animation: fadeInUp 1s ease-out;
}

/* DOWNLOADS SECTION */

/* Events Variables */
:root {
    --events-primary: #a21734;
    --events-dark-red: #3f1a1d;
    --events-light-gray: #f6f6f6;
    --events-text-gray: #999a9a;
    --events-beige: #b5985e;
    --events-light-beige: #dba09c;
    --events-cream: #e4c6a3;
    --events-teal: #509da7;
    --events-gray-border: #cbd0cf;
}

/* Events Hero Section */
.events-hero {
    padding: 5rem 0 3rem 0;
    position: relative;
    overflow: hidden;
}

    .events-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, transparent 0%, rgba(0,0,0,0.2) 100%);
    }

.events-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.events-hero-title {
    font-size: 3rem;
    font-weight: 500;
    color: white;
    margin: 10px;
}

.events-manage-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

    .events-manage-btn:hover {
        background-color: white;
        color: var(--events-primary);
    }

/* Events Content Section */
.events-content {
    background-color: var(--events-light-gray);
    padding: 2rem 0;
    min-height: 100vh;
}

.events-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Events Sidebar */
.events-sidebar {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    height: fit-content;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.events-filter-group {
    margin-bottom: 2rem;
}

.events-filter-title {
    color: #a28916;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--events-gray-border);
    padding-bottom: 0.5rem;
}

.events-filter-list {
    list-style: none;
}

    .events-filter-list li {
        margin-bottom: 0.5rem;
    }

    .events-filter-list a {
        color: var(--events-text-gray);
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.3s ease;
        display: block;
        padding: 0.25rem 0;
    }

        .events-filter-list a:hover,
        .events-filter-list a.active {
            color: #a28916;
            font-weight: 500;
        }

.events-reset-btn {
    background-color: transparent;
    color: #a28916;
    border: 2px solid #a28916;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .events-reset-btn:hover {
        background-color: #a28916;
        color: white;
    }

/* Events Section */
.events-section {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.events-search-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.search-input-wrapper {
    position: relative;
    flex: 1;
}

.events-search-input {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border: 2px solid var(--events-gray-border);
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

    .events-search-input:focus {
        border-color: #a28916;
    }

.events-clear-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--events-text-gray);
    font-size: 1rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

    .events-clear-btn:hover {
        color: #000000;
    }

.events-search-btn {
    background-color: var(--events-primary);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .events-search-btn:hover {
        background-color: var(--events-dark-red);
    }

.events-create-offers-btn {
    background-color: transparent;
    color: var(--events-primary);
    border: 2px solid var(--events-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

    .events-create-offers-btn:hover {
        background-color: var(--events-primary);
        color: white;
    }

/* Events Grid */
.events-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-card {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--events-gray-border);
    border-radius: 8px;
    background-color: var(--events-light-gray);
    transition: box-shadow 0.3s ease;
}

    .event-card:hover {
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

.event-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.event-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.event-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.event-location {
    color: var(--events-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.event-date {
    color: var(--events-text-gray);
    font-size: 0.9rem;
}

.event-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

.more-details-btn {
    background-color: transparent;
    color: #a28916;
    border: none;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

    .more-details-btn:hover {
        color: var(--events-dark-red);
    }

/* Events Responsive Design */
@media (max-width: 768px) {
    .events-container {
        grid-template-columns: 1fr;
    }

    .events-sidebar {
        order: 2;
    }

    .events-section {
        order: 1;
    }

    .events-hero-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .events-hero-title {
        font-size: 2.5rem;
    }

    .event-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .event-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .events-search-bar {
        flex-direction: column;
    }

    .events-hero-title {
        font-size: 2rem;
    }
}




/* HISTORY SECTION */
.history-main-content {
    padding: 60px 0px 0px 20px;
}

.history-section-header {
    margin-bottom: 40px;
}

.history-section-title {
    color: #a28916;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

    .history-section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100px;
        height: 2px;
        background-color: #a28916;
    }

.history-content-block {
    margin-bottom: 40px;
}

    .history-content-block p {
        font-size: 1rem;
        line-height: 1.7;
        color: black;
        margin-bottom: 20px;
    }

    .history-content-block strong {
        color: #333;
        font-weight: 600;
    }

@media (max-width: 480px) {
    .history-main-content {
        padding: 30px 0;
    }
}


/* CLIENTS SECTION */
.clients-hero {
    padding: 80px 0 80px;
    color: white;
}

.clients-hero-content {
    max-width: 1190px;
}

.clients-hero-title {
    font-size: 3rem;
    font-weight: 500;
    margin: 10px;
}

.clients-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 400;
    opacity: 0.95;
    padding: 15px;
}

.clients-main-content {
    background-color: var(--events-light-gray);
    padding: 60px 0;
}

.clients-content-layout {
    /*display: grid;*/
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

.clients-sidebar {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: fit-content;
}

.clients-filter-section {
    margin-bottom: 40px;
}

.clients-filter-section:last-child {
    margin-bottom: 0;
}

.clients-filter-title {
    color: var(--events-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.clients-filter-list {
    list-style: none;
}

.clients-filter-list li {
    margin-bottom: 12px;
}

.clients-filter-link {
    color: var(--events-text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: block;
}

.clients-filter-link:hover,
.clients-filter-link.active {
    color: var(--events-primary);
    font-weight: 500;
}

.clients-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.clients-article-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clients-article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.clients-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.clients-article-card:hover .clients-article-image img {
    transform: scale(1.05);
}

.clients-article-content {
    padding: 25px;
}

.clients-article-tags {
    margin-bottom: 15px;
}

.clients-tag {
    display: inline-block;
    background-color: #848484;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-right: 8px;
    margin-bottom: 5px;
}

.clients-article-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clients-article-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--events-text-gray);
}

.clients-category {
    font-weight: 500;
}

.clients-date {
    color: #888;
}

/* Clients Responsive Design */
@media (max-width: 1024px) {
    .clients-content-layout {
        grid-template-columns: 200px 1fr;
        gap: 30px;
    }

    .clients-articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .clients-hero-title {
        font-size: 2.5rem;
    }

    .clients-hero-subtitle {
        font-size: 1rem;
    }

    .clients-content-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .clients-sidebar {
        padding: 20px;
        order: 2;
    }

    .clients-articles-grid {
        grid-template-columns: 1fr;
        order: 1;
    }

    .applogo {
        width: 65%;
        padding-left: 50px;
    }

    .appbanner {
        width: 85%;
    }
}

@media (max-width: 480px) {
    .clients-hero {
        padding: 40px 0 60px;
    }

    .clients-hero-title {
        font-size: 2rem;
    }

    .clients-main-content {
        padding: 30px 0;
    }

    .clients-sidebar {
        padding: 15px;
    }

    .clients-article-content {
        padding: 20px;
    }

    .clients-filter-section {
        margin-bottom: 30px;
    }

    .applogo {
        width: 65%;
        padding-left: 50px;
    }

    .appbanner {
        width: 85%;
    }
}

/*EXECUTIVE SECTION */
.exec-article-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.exec-tag {
    display: inline-block;
    color: black;
    font-size: 1rem;
    font-weight: 500;
}

/*TABLE SECTION */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #ddd;
}

th, td {
  text-align: left;
  padding: 15px;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

/*COST SECTION */
.cost-header {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .plan-duration-select {
        padding: 5px;
        font-family: 'Montserrat', sans-serif;
        font-size: 14px;
        border: 2px solid #a28916;
        border-radius: 7px;
        background-color: #fff;
        cursor: pointer;
        outline: none;
    }

    .plan-duration-select:focus {
        border-color: #a28916;
    }