/*
 * Theme Pages Styles
 * Estilos específicos para las páginas del tema CEI Gemology
 */

/* ===== PÁGINAS GENERALES ===== */

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #cfaa61, #b8941f);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #cfaa61, #b8941f);
    border-radius: 2px;
}

.section-subtitle {
    color: #666;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== QUIENES SOMOS / NOSOTROS ===== */

/* About Introduction */
.about-intro {
    padding: 5rem 0;
    background: #f8f9fa;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.intro-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.intro-highlights {
    display: grid;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #cfaa61, #b8941f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-content h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.highlight-content p {
    color: #666;
    margin: 0;
}

.intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Mission Vision Values */
.mvv-section {
    padding: 5rem 0;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mvv-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid #cfaa61;
}

.mvv-card:hover {
    transform: translateY(-10px);
}

.mvv-icon {
    margin-bottom: 1.5rem;
}

.mvv-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.mvv-card p {
    color: #666;
    line-height: 1.6;
}

.mvv-card ul {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.mvv-card ul li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.mvv-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #cfaa61;
    font-weight: bold;
}

/* Team Sections */
.leadership-team,
.our-team,
.faculty-team {
    padding: 5rem 0;
    background: white;
}

.leadership-grid,
.team-grid,
.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.leader-card,
.team-member,
.faculty-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.leader-card:hover,
.team-member:hover,
.faculty-member:hover {
    transform: translateY(-10px);
}

.member-image,
.leader-image,
.faculty-image {
    height: 250px;
    overflow: hidden;
}

.member-image img,
.leader-image img,
.faculty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.leader-card:hover .leader-image img,
.team-member:hover .member-image img,
.faculty-member:hover .faculty-image img {
    transform: scale(1.05);
}

.member-info,
.leader-info,
.faculty-info {
    padding: 2rem;
}

.member-info h3,
.leader-info h3,
.faculty-info h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.member-position,
.leader-position,
.faculty-specialty {
    color: #cfaa61;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-experience,
.leader-credentials,
.faculty-experience {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.member-description,
.leader-description,
.faculty-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.member-credentials,
.leader-achievements,
.faculty-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.credential,
.achievement {
    background: #f8f9fa;
    color: #cfaa61;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===== BÚSQUEDA ===== */

.search-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.search-content {
    max-width: 800px;
    margin: 0 auto;
}

.search-form-container {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.search-form-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.search-input-group {
    display: flex;
    margin-bottom: 2rem;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px 0 0 10px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: #cfaa61;
}

.search-button {
    background: #cfaa61;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 0 10px 10px 0;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s ease;
}

.search-button:hover {
    background: #b8941f;
}

.search-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.filter-group select {
    width: 100%;
    padding: 10px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    background: white;
}

.search-suggestions h3 {
    margin-bottom: 1rem;
    color: #333;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.suggestion-tag {
    background: white;
    color: #cfaa61;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    border: 2px solid #cfaa61;
    transition: all 0.3s ease;
}

.suggestion-tag:hover {
    background: #cfaa61;
    color: white;
}

/* Search Results */
.search-results {
    padding: 3rem 0;
}

.results-header {
    margin-bottom: 3rem;
}

.results-header h2 {
    color: #333;
    margin-bottom: 0.5rem;
}

.results-count {
    color: #666;
    font-size: 1.1rem;
}

.results-grid {
    display: grid;
    gap: 2rem;
}

.result-item {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: start;
}

.result-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.result-type {
    background: #cfaa61;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.result-date {
    color: #666;
    font-size: 0.9rem;
}

.result-title {
    margin-bottom: 1rem;
}

.result-title a {
    color: #333;
    text-decoration: none;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.result-title a:hover {
    color: #cfaa61;
}

.result-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.result-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.result-category {
    background: #f8f9fa;
    color: #cfaa61;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.result-link {
    color: #cfaa61;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.result-link:hover {
    color: #b8941f;
}

.result-image {
    width: 200px;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* No Results */
.no-results {
    padding: 5rem 0;
    text-align: center;
}

.no-results-content {
    max-width: 600px;
    margin: 0 auto;
}

.no-results-icon {
    margin-bottom: 2rem;
}

.no-results h2 {
    color: #333;
    margin-bottom: 1rem;
}

.no-results p {
    color: #666;
    margin-bottom: 2rem;
}

.no-results-suggestions {
    text-align: left;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.no-results-suggestions h3 {
    color: #333;
    margin-bottom: 1rem;
}

.no-results-suggestions ul {
    list-style: none;
    padding: 0;
}

.no-results-suggestions li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.no-results-suggestions li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #cfaa61;
}

.no-results-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== NOTAS / BLOG ===== */

.featured-article {
    padding: 4rem 0;
    background: white;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.featured-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.featured-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.featured-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #cfaa61, #b8941f);
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.featured-category {
    background: #cfaa61;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.featured-date {
    color: #666;
    font-size: 0.9rem;
}

.featured-title {
    margin-bottom: 1rem;
}

.featured-title a {
    color: #333;
    text-decoration: none;
    font-size: 1.8rem;
    transition: color 0.3s ease;
}

.featured-title a:hover {
    color: #cfaa61;
}

.featured-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.featured-author {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #666;
}

.author-name {
    font-weight: 600;
}

.read-time {
    color: #cfaa61;
}

/* Articles Grid */
.articles-grid {
    padding: 4rem 0;
    background: #f8f9fa;
}

.articles-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.articles-main {
    display: grid;
    gap: 2rem;
}

.article-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-image {
    height: 150px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #cfaa61, #b8941f);
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-content {
    padding: 1.5rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.article-category {
    background: #cfaa61;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.article-date {
    color: #666;
    font-size: 0.9rem;
}

.article-title {
    margin-bottom: 1rem;
}

.article-title a {
    color: #333;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.article-title a:hover {
    color: #cfaa61;
}

.article-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name {
    color: #666;
    font-size: 0.9rem;
}

.article-link {
    color: #cfaa61;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-link:hover {
    color: #b8941f;
}

/* Sidebar */
.articles-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sidebar-widget h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.category-list,
.archive-list {
    list-style: none;
    padding: 0;
}

.category-list li,
.archive-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.category-list li:last-child,
.archive-list li:last-child {
    border-bottom: none;
}

.category-list a,
.archive-list a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-list a:hover,
.archive-list a:hover {
    color: #cfaa61;
}

.category-count {
    background: #f8f9fa;
    color: #cfaa61;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.8rem;
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-post {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.popular-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.popular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-content h4 {
    margin-bottom: 0.5rem;
}

.popular-content h4 a {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.popular-content h4 a:hover {
    color: #cfaa61;
}

.popular-date {
    color: #666;
    font-size: 0.8rem;
}

/* Newsletter */
.newsletter-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #cfaa61, #b8941f);
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.newsletter-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.newsletter-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.newsletter-input-group {
    display: flex;
    margin-bottom: 1rem;
}

.newsletter-input-group input {
    flex: 1;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px 0 0 10px;
    font-size: 1rem;
    outline: none;
}

.newsletter-input-group button {
    background: #cfaa61;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 0 10px 10px 0;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-input-group button:hover {
    background: #b8941f;
}

.newsletter-privacy {
    font-size: 0.9rem;
    color: #666;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
}

/* ===== PRODUCTOS ===== */

.product-categories {
    padding: 4rem 0;
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid #cfaa61;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-icon {
    margin-bottom: 1.5rem;
}

.category-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.category-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-link {
    color: #cfaa61;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-link:hover {
    color: #b8941f;
}

/* Featured Products */
.featured-products {
    padding: 4rem 0;
    background: #f8f9fa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #cfaa61, #b8941f);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #cfaa61;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-content {
    padding: 2rem;
}

.product-category {
    color: #cfaa61;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-title {
    margin-bottom: 1rem;
}

.product-title a {
    color: #333;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #cfaa61;
}

.product-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-price {
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
}

.original-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.product-actions .btn {
    flex: 1;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Product Categories Detail */
.product-categories-detail {
    padding: 4rem 0;
    background: white;
}

.category-section {
    margin-bottom: 4rem;
}

.category-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.category-section p {
    color: #666;
    margin-bottom: 2rem;
}

.category-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-item {
    display: flex;
    gap: 1rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item .product-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.product-item .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-info .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #cfaa61;
}

/* Product Services */
.product-services {
    padding: 4rem 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    color: #cfaa61;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #b8941f;
}

/* ===== SAMPLE PAGE ===== */

.sample-content {
    padding: 4rem 0;
    background: white;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.main-content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.main-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.main-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.main-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.main-content li {
    color: #666;
    margin-bottom: 0.5rem;
}

.pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.page-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #cfaa61;
}

.page-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.page-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #cfaa61, #b8941f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.widget {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.widget h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.links-list {
    list-style: none;
    padding: 0;
}

.links-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.links-list li:last-child {
    border-bottom: none;
}

.links-list a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.links-list a:hover {
    color: #cfaa61;
}

.contact-info p,
.schedule-info p {
    margin-bottom: 1rem;
    color: #666;
}

.contact-info strong,
.schedule-info strong {
    color: #333;
}

/* Sample Gallery */
.sample-gallery {
    padding: 4rem 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Sample Testimonials */
.sample-testimonials {
    padding: 4rem 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #cfaa61;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: #666;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.testimonial-author h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #cfaa61;
    font-size: 0.9rem;
}

/* ===== CTA SECTIONS ===== */

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #333, #555);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .intro-content,
    .featured-content,
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .articles-container,
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .search-input-group {
        flex-direction: column;
    }
    
    .search-input {
        border-radius: 10px;
        margin-bottom: 1rem;
    }
    
    .search-button {
        border-radius: 10px;
    }
    
    .result-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .result-image {
        width: 100%;
        height: 200px;
    }
    
    .article-card {
        grid-template-columns: 1fr;
    }
    
    .article-image {
        height: 200px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .highlight-item,
    .mvv-card,
    .leader-card,
    .team-member,
    .faculty-member {
        padding: 1.5rem;
    }
    
    .search-form-container,
    .newsletter-form {
        padding: 2rem 1.5rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .no-results-actions {
        flex-direction: column;
    }
}

/* ===== UTILITIES ===== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.p-0 { padding: 0; }
.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* ===== ANIMATIONS ===== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}