/* ========================================
   ALPHA LIBRA LLC - Additional Page Styles
   Official Navy Blue & Gold Theme
   ======================================== */

/* ========================================
   PAGE HEADER - ENHANCED WITH HD BACKGROUNDS
   ======================================== */
.page-header {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #0f2744 0%, #1a365d 50%, #0f2744 100%);
    overflow: hidden;
}

.page-header.animated-header {
    background: linear-gradient(135deg, #0f2744 0%, #1a365d 30%, #0f2744 60%, #1a365d 100%);
}

/* HD Background Images for Each Page */
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

/* About Page - Modern Office */
body[data-page="about"] .page-header::before,
.page-header[data-bg="about"]::before {
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=90');
}

/* Brands Page - E-commerce/Shopping */
body[data-page="brands"] .page-header::before,
.page-header[data-bg="brands"]::before {
    background-image: url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=1920&q=90');
}

/* Technology Page - Tech/Data */
body[data-page="technology"] .page-header::before,
.page-header[data-bg="technology"]::before {
    background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=1920&q=90');
}

/* Contact Page - Communication */
body[data-page="contact"] .page-header::before,
.page-header[data-bg="contact"]::before {
    background-image: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1920&q=90');
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(26, 54, 93, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    animation: headerBgPulse 10s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes headerBgPulse {
    0% { opacity: 0.8; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

/* Header Particles */
.header-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.page-tag i {
    color: var(--gold);
}

.page-tag.gold-accent {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-title.gradient-title {
    background: linear-gradient(135deg, #fff 0%, #d4af37 30%, #f5d061 60%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: titleShimmer 5s ease-in-out infinite alternate;
}

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

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

/* ========================================
   ABOUT PAGE - STORY SECTION
   ======================================== */
.story-section {
    padding: var(--section-padding);
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content .section-tag {
    margin-bottom: 16px;
}

.story-content .section-title {
    margin-bottom: 30px;
}

.story-content p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--light-gray);
}

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

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-text {
    color: var(--gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.story-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
}

.story-badge i {
    font-size: 1.5rem;
}

.story-badge span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* ========================================
   MISSION SECTION
   ======================================== */
.mission-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mission-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

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

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-icon i {
    font-size: 2rem;
    color: var(--white);
}

.mission-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 16px;
}

.mission-card p {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* ========================================
   WHY SECTION
   ======================================== */
.why-section {
    padding: var(--section-padding);
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.why-card {
    padding: 40px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-xl);
    transition: var(--transition-normal);
    position: relative;
}

.why-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.why-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--light-gray);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.why-card h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--black);
    margin-bottom: 16px;
}

.why-card p {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* ========================================
   LEGAL SECTION
   ======================================== */
.legal-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

.legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.legal-content .section-tag {
    margin-bottom: 16px;
}

.legal-content .section-title {
    margin-bottom: 24px;
}

.legal-content p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.legal-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.legal-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--black);
    font-weight: 500;
}

.legal-list i {
    color: var(--primary);
    font-size: 1.2rem;
}

.legal-docs {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.doc-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-md);
}

.doc-card i {
    font-size: 2.5rem;
    color: var(--primary);
}

.doc-card h4 {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 4px;
}

.doc-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ========================================
   BRANDS PAGE - BRAND DETAIL
   ======================================== */
.brand-detail {
    padding: var(--section-padding);
    background: var(--white);
}

.brand-detail.alt {
    background: var(--off-white);
}

.brand-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.brand-detail-grid.reverse {
    direction: rtl;
}

.brand-detail-grid.reverse > * {
    direction: ltr;
}

.brand-detail-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 500px;
}

.brand-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-logo-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.brand-logo-overlay img {
    height: 30px;
    width: auto;
}

.brand-detail-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.brand-detail-icon.tech { background: rgba(59, 130, 246, 0.1); }
.brand-detail-icon.tech i { color: var(--tech-color); }
.brand-detail-icon.fashion { background: rgba(236, 72, 153, 0.1); }
.brand-detail-icon.fashion i { color: var(--fashion-color); }
.brand-detail-icon.home { background: rgba(16, 185, 129, 0.1); }
.brand-detail-icon.home i { color: var(--home-color); }
.brand-detail-icon.wellness { background: rgba(139, 92, 246, 0.1); }
.brand-detail-icon.wellness i { color: var(--wellness-color); }

.brand-detail-icon i {
    font-size: 1.8rem;
}

.brand-detail-category {
    display: block;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.brand-detail-name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 20px;
}

.brand-detail-desc {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.brand-detail-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.detail-feature {
    display: flex;
    gap: 16px;
}

.detail-feature i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 4px;
}

.detail-feature h4 {
    font-size: 1rem;
    color: var(--black);
    margin-bottom: 4px;
}

.detail-feature p {
    font-size: 0.9rem;
    color: var(--gray);
}

.brand-cta {
    display: inline-flex;
}

.tech-btn { background: var(--tech-color); }
.fashion-btn { background: var(--fashion-color); }
.home-btn { background: var(--home-color); }
.wellness-btn { background: var(--wellness-color); }

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #0f2744, #0a1929);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
}

.contact-form-wrapper {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212,175,55,0.2);
    padding: 50px;
    border-radius: var(--radius-xl);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: white;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: white;
    background: rgba(255,255,255,0.05);
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.form-group select option {
    background: #0f2744;
    color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    justify-content: center;
    padding: 18px 40px;
}

.form-note {
    text-align: center;
    margin-top: 20px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.form-note a {
    color: var(--gold);
    font-weight: 600;
}

.form-success {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.05));
    border-radius: var(--radius-xl);
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.form-success i {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 20px;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: white;
    margin-bottom: 10px;
}

.form-success p {
    color: rgba(255,255,255,0.7);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212,175,55,0.2);
    padding: 30px;
    border-radius: var(--radius-lg);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.info-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.info-card h3 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 12px;
}

.info-card p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.info-card a {
    color: var(--gold);
}

.info-card a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0e27;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

/* Brand Contacts */
.brand-contacts {
    padding: var(--section-padding);
    background: var(--off-white);
}

.brand-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.brand-contact-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border-top: 4px solid;
}

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

.brand-contact-card.tech { border-color: var(--tech-color); }
.brand-contact-card.fashion { border-color: var(--fashion-color); }
.brand-contact-card.home { border-color: var(--home-color); }
.brand-contact-card.wellness { border-color: var(--wellness-color); }

.brand-contact-card i {
    font-size: 2rem;
    margin-bottom: 16px;
}

.brand-contact-card.tech i { color: var(--tech-color); }
.brand-contact-card.fashion i { color: var(--fashion-color); }
.brand-contact-card.home i { color: var(--home-color); }
.brand-contact-card.wellness i { color: var(--wellness-color); }

.brand-contact-card h4 {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 4px;
}

.brand-contact-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.brand-contact-card span {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #0a1929, #0f2744);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.faq-question i {
    color: var(--gold);
    transition: var(--transition-normal);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 24px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* ========================================
   RESPONSIVE - PAGES
   ======================================== */
@media (max-width: 1200px) {
    .brand-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .story-grid,
    .legal-grid,
    .brand-detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .brand-detail-grid.reverse {
        direction: ltr;
    }
    
    .mission-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .brand-detail-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 150px 0 80px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .story-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .brand-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .product-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .promo-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PRODUCT SHOWCASE GALLERY
   ======================================== */
.product-showcase {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.product-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 1;
    max-height: 280px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

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

.product-card:hover img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.product-card:hover .product-overlay {
    transform: translateY(0);
}

.product-brand {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-300);
    margin-bottom: 4px;
}

.product-overlay h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

/* ========================================
   PROMOTIONAL FLYERS SECTION
   ======================================== */
.promo-section {
    padding: 100px 0;
    background: var(--white);
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 48px;
}

.promo-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    max-height: 400px;
}

.promo-card img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.4s ease;
}

.promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.promo-card:hover img {
    transform: scale(1.02);
}

@media (max-width: 992px) {
    .product-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .product-gallery {
        grid-template-columns: 1fr;
    }
    
    .promo-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   CLIENT PORTFOLIO SECTION
   ======================================== */
.portfolio-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.portfolio-card {
    display: flex;
    flex-direction: column;
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    border: 1px solid var(--gray-200);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-500);
}

.portfolio-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.portfolio-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.portfolio-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 8px;
}

.portfolio-card p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-500);
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 16px;
    transition: color 0.3s ease;
}

.portfolio-link i {
    font-size: 0.75rem;
}

.portfolio-card:hover .portfolio-link {
    color: var(--primary-600);
}

@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   VIDEO SHOWCASE SECTION
   ======================================== */
.video-showcase {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 40%, #0d1b2a 70%, #151530 100%);
}

.video-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(110, 66, 193, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 212, 170, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
    animation: gradientPulse 8s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes gradientPulse {
    0% { opacity: 0.8; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

.video-showcase .section-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 60px;
}

.video-showcase .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(110, 66, 193, 0.2);
    color: var(--accent);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(110, 66, 193, 0.3);
}

.video-showcase .section-tag i {
    font-size: 1rem;
}

.video-showcase .gradient-text {
    background: linear-gradient(135deg, #fff 0%, #a8edea 30%, #fed6e3 60%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3rem;
    font-weight: 800;
}

.video-showcase .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.video-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(110, 66, 193, 0.4);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(110, 66, 193, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.video-card.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background: #000;
}

.video-card.featured .video-wrapper {
    padding-bottom: 100%;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-wrapper video {
    transform: scale(1.05);
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.play-btn {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), #00d4aa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(110, 66, 193, 0.4);
}

.video-card.featured .play-btn {
    width: 90px;
    height: 90px;
}

.play-btn i {
    font-size: 1.5rem;
    color: var(--white);
    margin-left: 4px;
}

.video-card.featured .play-btn i {
    font-size: 2rem;
}

.video-card:hover .play-btn {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(110, 66, 193, 0.5);
}

.video-card.playing .video-play-overlay {
    opacity: 0;
    pointer-events: none;
}

.video-info {
    padding: 24px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.video-card.featured .video-info {
    padding: 30px;
}

.video-brand {
    display: inline-block;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.video-brand.tech {
    background: rgba(0, 136, 255, 0.2);
    color: #00aaff;
    border: 1px solid rgba(0, 136, 255, 0.3);
}

.video-brand.fashion {
    background: rgba(236, 72, 153, 0.2);
    color: #ec4899;
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.video-brand.home {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.video-brand.wellness {
    background: rgba(110, 66, 193, 0.2);
    color: var(--accent);
    border: 1px solid rgba(110, 66, 193, 0.3);
}

.video-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 8px;
}

.video-card.featured .video-info h4 {
    font-size: 1.4rem;
}

.video-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Video responsive */
@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-card.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .video-card.featured .video-wrapper {
        padding-bottom: 56.25%;
    }
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-card.featured {
        grid-column: span 1;
    }
    
    .video-showcase .gradient-text {
        font-size: 2.2rem;
    }
    
    .play-btn {
        width: 60px;
        height: 60px;
    }
    
    .video-card.featured .play-btn {
        width: 70px;
        height: 70px;
    }
}

/* ========================================
   ENHANCED ANIMATIONS FOR ALL PAGES
   ======================================== */

/* Floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Glow animation */
@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(110, 66, 193, 0.3); }
    50% { box-shadow: 0 0 40px rgba(110, 66, 193, 0.6); }
}

/* Shimmer effect */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.shimmer-effect {
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}
