/* Additional Components - Not in Base
   Extends: novio-base.css
   This file contains component styles that are NOT in the base CSS
*/

/* Service Cards - Specific variant not in base */
.service-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(194, 213, 0, 0.1);
    border-color: var(--primary-color);
}

/* Feature Cards - Not in base */
.feature-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(30, 30, 30, 0.9));
    border: 1px solid rgba(194, 213, 0, 0.1);
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), transparent, var(--accent-color));
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover::before {
    opacity: 0.3;
}

/* Contact Form - Not in base */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form .input-group {
    margin-bottom: 2rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Footer Section - Not in base */
.footer {
    background: var(--bg-secondary);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-link:hover {
    color: var(--primary-color);
}

/* Social Icons - Not in base */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Services Grid - Not in base */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px;
}

/* Left-align lists in media-info-panel and card sections */
.media-info-panel ul,
.card-section ul {
    text-align: left;
    list-style: none;
    padding-left: 0;
    margin: 0.5rem 0;
}

.media-info-panel ul li,
.card-section ul li {
    text-align: left;
    padding: 0rem 0;
    padding-left: 1.5rem;
    position: relative;
}

/* Add custom bullet points */
.media-info-panel ul li::before,
.card-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Left-align titles and add horizontal spacing for grid-2 media-card-layout */
.media-card-layout .card-section h3 {
    text-align: left;
}

.grid-2.media-card-layout {
    gap: 3rem;
}

/* Circular Arrow Button - Green filled by default */
.btn-circle-arrow {
    width: 48px;
    height: 48px;
    border: 2px solid var(--primary-color);
    background: var(--primary-color);
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    padding: 0;
    border-radius: 4px;
}

.btn-circle-arrow:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(194, 213, 0, 0.3);
}

.btn-circle-arrow svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: all 0.2s ease;
}

.btn-circle-arrow:hover svg {
    transform: translateX(2px);
}

/* Three column layout for cards with button */
.card-sections-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: stretch;
}

/* Mobile override for card-sections-wrapper */
body.mobile-mode .card-sections-wrapper {
    display: block;
}

.card-button-column {
    width: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}