/* Modern Homepage Styles - Inspired by Naked Coffee */

/* Container */
.container-modern {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Mobile Container Adjustments */
@media (max-width: 768px) {
    .container-modern {
        padding: 0 1rem;
    }
}

/* Modern Hero Section */
.hero-section-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 50%, #8b7355 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 115, 85, 0.1) 0%, transparent 50%);
    opacity: 0.6;
}

.hero-content-modern {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 4rem 2rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-title .accent-text {
    color: var(--secondary-color);
    display: block;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-modern {
    background: var(--secondary-color);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.btn-primary-modern:hover {
    background: transparent;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.btn-secondary-modern {
    background: transparent;
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-secondary-modern:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    opacity: 0.7;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Featured Products Section */
.featured-products-section {
    padding: 8rem 0;
    background: var(--bg-white);
}

.section-header {
    margin-bottom: 4rem;
}

.section-title-modern {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 300;
}

.products-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.product-card-modern {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

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

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.product-image-modern,
.product-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card-modern:hover .product-image-modern,
.product-card-modern:hover .product-placeholder {
    transform: scale(1.1);
}

.product-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-modern:hover .product-overlay-modern {
    opacity: 1;
}

.btn-overlay {
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-overlay:hover {
    background: white;
    color: var(--primary-color);
    transform: scale(1.05);
}

.product-info-modern {
    padding: 1.5rem;
}

.product-title-modern {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.product-category-modern {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about-section-modern {
    padding: 8rem 0;
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    padding-right: 2rem;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.about-image-wrapper {
    position: relative;
}

.about-image-placeholder {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features-section-modern {
    padding: 8rem 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-card-modern {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card-modern h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card-modern p {
    color: var(--text-light);
    line-height: 1.7;
}

/* CTA Section */
.cta-section-modern {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-content {
        padding-right: 0;
    }
    
    .products-carousel {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-modern,
    .btn-secondary-modern {
        width: 100%;
        max-width: 300px;
    }
    
    .products-carousel {
        grid-template-columns: 1fr;
    }
    
    .about-page-header {
        padding: 3rem 0;
    }
    
    .about-page-header-title {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        letter-spacing: 2px;
    }
    
    .about-showcase-section {
        padding: 4rem 0;
    }
    
    .about-showcase-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
    }
    
    .about-text-content {
        padding-right: 0;
    }
    
    .about-foremost-title {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
        margin-bottom: 2rem;
    }
    
    .about-description {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .about-logo-container {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
    
    .logo-f,
    .logo-m {
        font-size: 5rem;
    }
}

/* Animation Classes */
[data-animate] {
    opacity: 0;
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate="fade-in"] {
    transform: translateY(0);
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate="slide-up"] {
    transform: translateY(50px);
}

/* Breadcrumb Section */
.breadcrumb-section {
    padding: 0.5rem 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-nav {
    margin: 0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-link {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #00a551;
}

.breadcrumb-separator {
    color: #adb5bd;
    margin: 0 0.25rem;
}

.breadcrumb-current {
    color: #00a551;
    font-weight: 600;
}

/* About Hero Section */
.about-hero-section {
    min-height: 60vh;
    padding: 6rem 2rem 8rem;
}

/* About Page Dark Header */
.about-page-header {
    position: relative;
    padding: 4rem 0;
    background: #0a0a0a;
    overflow: hidden;
}

.about-page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, #0a0a0a 0%, #1a1815 50%, #0a0a0a 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(139, 115, 85, 0.03) 2px,
            rgba(139, 115, 85, 0.03) 4px
        ),
        radial-gradient(ellipse at 20% 30%, rgba(184, 134, 11, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(184, 134, 11, 0.12) 0%, transparent 50%);
    background-size: 100% 100%, 40px 40px, 100% 100%, 100% 100%;
    z-index: 0;
}

.about-page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(90deg, transparent 0%, rgba(184, 134, 11, 0.05) 25%, transparent 50%, rgba(184, 134, 11, 0.05) 75%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(139, 115, 85, 0.08) 30%, transparent 60%, rgba(139, 115, 85, 0.08) 80%, transparent 100%);
    background-size: 200% 100%, 100% 200%;
    animation: marble-vein 20s ease-in-out infinite;
    opacity: 0.6;
    z-index: 0;
}

.about-page-header-title {
    position: relative;
    z-index: 2;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin: 0;
}

/* About Showcase Section */
.about-showcase-section {
    padding: 6rem 0;
    background: #f8f7f5;
    position: relative;
    overflow: hidden;
}

.about-showcase-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(200, 200, 200, 0.02) 2px,
            rgba(200, 200, 200, 0.02) 4px
        ),
        radial-gradient(ellipse at 30% 40%, rgba(220, 220, 220, 0.1) 0%, transparent 50%);
    background-size: 40px 40px, 100% 100%;
    z-index: 0;
    opacity: 0.5;
}

.about-showcase-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-text-content {
    padding-right: 2rem;
}

.about-foremost-title {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.about-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #1a1a1a;
    margin-bottom: 1.8rem;
}

.about-logo-showcase {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-logo-container {
    width: 300px;
    height: 300px;
    background: #ffffff;
    border-radius: 8px;
    border: 2px solid #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.about-logo-fm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    width: 100%;
    height: 100%;
}

.logo-f,
.logo-m {
    font-size: 5.5rem;
    font-weight: 900;
    color: #00a551;
    line-height: 1;
    display: inline-block;
}

.logo-f {
    letter-spacing: -0.02em;
    position: relative;
}

.logo-m {
    letter-spacing: -0.08em;
    position: relative;
    transform: translateY(0);
}

/* M letter with sharp angular design */
.logo-m::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #00a551;
    z-index: -1;
}

/* Mission, Vision & Values Section */
.features-showcase-section {
    padding: 0;
    background: transparent;
    position: relative;
}

.mission-vision-wrapper {
    position: relative;
    width: 100%;
}

/* Top Dark Marble Border */
.mission-vision-top-border {
    position: relative;
    height: 80px;
    background: #0a0a0a;
    background-image: 
        linear-gradient(135deg, #0a0a0a 0%, #1a1815 50%, #0a0a0a 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(139, 115, 85, 0.03) 2px,
            rgba(139, 115, 85, 0.03) 4px
        ),
        radial-gradient(ellipse at 20% 30%, rgba(184, 134, 11, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(184, 134, 11, 0.12) 0%, transparent 50%);
    background-size: 100% 100%, 40px 40px, 100% 100%, 100% 100%;
    border-radius: 0 0 50% 50% / 0 0 30px 30px;
    margin-bottom: -1px;
}

/* White Content Panel */
.mission-vision-content-panel {
    background: #ffffff;
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.mission-vision-three-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mission-column,
.vision-column,
.values-column {
    display: flex;
    flex-direction: column;
}

.mission-vision-heading {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 1.5rem 0;
}

.mission-vision-separator {
    width: 100%;
    height: 1px;
    background: #d0d0d0;
    margin-bottom: 1.5rem;
}

.mission-vision-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1a1a1a;
    margin: 0;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    line-height: 2;
    color: #1a1a1a;
    position: relative;
    padding-left: 1.5rem;
}

.values-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1.8;
    color: #1a1a1a;
}

/* Bottom Dark Marble Border */
.mission-vision-bottom-border {
    position: relative;
    height: 80px;
    background: #0a0a0a;
    background-image: 
        linear-gradient(135deg, #0a0a0a 0%, #1a1815 50%, #0a0a0a 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(139, 115, 85, 0.03) 2px,
            rgba(139, 115, 85, 0.03) 4px
        ),
        radial-gradient(ellipse at 20% 30%, rgba(184, 134, 11, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(184, 134, 11, 0.12) 0%, transparent 50%);
    background-size: 100% 100%, 40px 40px, 100% 100%, 100% 100%;
    border-radius: 50% 50% 0 0 / 30px 30px 0 0;
    margin-top: -1px;
}

.mission-vision-title {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #00a551;
}

.mission-vision-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6c757d;
}

.values-grid-wrapper {
    grid-column: 1 / -1;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.values-grid-wrapper .mission-vision-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.value-item h4 {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.value-item p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #6c757d;
    margin: 0;
}

/* Founder Section */
.founder-section {
    padding: 6rem 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.founder-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, #0a0a0a 0%, #1a1815 50%, #0a0a0a 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(139, 115, 85, 0.03) 2px,
            rgba(139, 115, 85, 0.03) 4px
        ),
        radial-gradient(ellipse at 20% 30%, rgba(184, 134, 11, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(184, 134, 11, 0.12) 0%, transparent 50%);
    background-size: 100% 100%, 40px 40px, 100% 100%, 100% 100%;
    z-index: 0;
}

.founder-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(90deg, transparent 0%, rgba(184, 134, 11, 0.05) 25%, transparent 50%, rgba(184, 134, 11, 0.05) 75%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(139, 115, 85, 0.08) 30%, transparent 60%, rgba(139, 115, 85, 0.08) 80%, transparent 100%);
    background-size: 200% 100%, 100% 200%;
    animation: marble-vein 20s ease-in-out infinite;
    opacity: 0.6;
    z-index: 0;
}

.founder-section .container-modern {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.founder-profile-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.founder-profile-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.founder-profile-text {
    display: flex;
    flex-direction: column;
}

.founder-profile-name {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.founder-profile-label {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.founder-profile-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    margin: 0;
    opacity: 0.95;
}

.founder-profile-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.founder-profile-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 3 / 4;
}

/* Industrial Complex Section */
.industrial-complex-section {
    padding: 6rem 0;
    background: #2a2a2a;
    position: relative;
    overflow: hidden;
}

.industrial-complex-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 50%, #2a2a2a 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(139, 115, 85, 0.02) 2px,
            rgba(139, 115, 85, 0.02) 4px
        ),
        radial-gradient(ellipse at 20% 30%, rgba(184, 134, 11, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(184, 134, 11, 0.06) 0%, transparent 50%);
    background-size: 100% 100%, 40px 40px, 100% 100%, 100% 100%;
    z-index: 0;
}

.industrial-complex-section .container-modern {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.industrial-info-card {
    background: #e8e8e8;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(200, 200, 200, 0.03) 2px,
            rgba(200, 200, 200, 0.03) 4px
        ),
        radial-gradient(ellipse at 30% 40%, rgba(220, 220, 220, 0.15) 0%, transparent 50%);
    background-size: 40px 40px, 100% 100%;
    border-radius: 16px;
    padding: 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.industrial-info-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.industrial-info-text {
    display: flex;
    flex-direction: column;
}

.industrial-info-title {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 900;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 2rem 0;
    line-height: 1.2;
}

.industrial-info-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #1a1a1a;
    margin: 0;
}

.industrial-info-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.industrial-info-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.founder-image {
    width: 100%;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00a551 0%, #1a4d3a 50%, #00a551 100%);
}

.founder-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 165, 81, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-image-text {
    color: white;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.founder-text-content {
    padding-left: 2rem;
}

.founder-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: #00a551;
    color: white;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.founder-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #495057;
    margin-bottom: 1.5rem;
}

.founder-signature {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

.signature-line {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-style: italic;
    color: #6c757d;
    font-size: 1rem;
}

/* Video Section */
.video-section {
    padding: 8rem 0;
    background: white;
}

.video-section-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Standalone Video Section */
.video-section-standalone {
    padding: 6rem 0;
    background: #f8f7f5;
    position: relative;
    overflow: hidden;
}

.video-section-standalone::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(200, 200, 200, 0.02) 2px,
            rgba(200, 200, 200, 0.02) 4px
        ),
        radial-gradient(ellipse at 30% 40%, rgba(220, 220, 220, 0.1) 0%, transparent 50%);
    background-size: 40px 40px, 100% 100%;
    z-index: 0;
    opacity: 0.5;
}

.video-section-standalone .container-modern {
    max-width: 1400px;
    position: relative;
    z-index: 1;
}

/* Inline Video Section (within Mission/Vision section) */
.video-section-inline {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid #e9ecef;
}

/* Decorative Video Frame */
.video-frame-decorative {
    position: relative;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 40px 40px 0;
    background: #ffffff;
}

/* Top Left and Right White Marble Corners */
.video-frame-top-left,
.video-frame-top-right {
    position: absolute;
    top: 0;
    width: 150px;
    height: 150px;
    z-index: 3;
    background: #ffffff;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(200, 200, 200, 0.03) 2px,
            rgba(200, 200, 200, 0.03) 4px
        ),
        radial-gradient(ellipse at 30% 40%, rgba(220, 220, 220, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(230, 230, 230, 0.1) 0%, transparent 50%);
    background-size: 40px 40px, 100% 100%, 100% 100%;
}

.video-frame-top-left {
    left: 0;
    border-radius: 0 0 100% 0;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.05);
}

.video-frame-top-right {
    right: 0;
    border-radius: 0 0 0 100%;
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.05);
}

/* Top Black Marble Border */
.video-frame-decorative::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: #0a0a0a;
    background-image: 
        linear-gradient(135deg, #0a0a0a 0%, #1a1815 50%, #0a0a0a 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(139, 115, 85, 0.03) 2px,
            rgba(139, 115, 85, 0.03) 4px
        ),
        radial-gradient(ellipse at 20% 30%, rgba(184, 134, 11, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(184, 134, 11, 0.12) 0%, transparent 50%);
    background-size: 100% 100%, 40px 40px, 100% 100%, 100% 100%;
    z-index: 2;
}

/* Left Side Black Marble Border */
.video-frame-decorative::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    bottom: 0;
    width: 40px;
    background: #0a0a0a;
    background-image: 
        linear-gradient(135deg, #0a0a0a 0%, #1a1815 50%, #0a0a0a 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(139, 115, 85, 0.03) 2px,
            rgba(139, 115, 85, 0.03) 4px
        ),
        radial-gradient(ellipse at 20% 30%, rgba(184, 134, 11, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(184, 134, 11, 0.12) 0%, transparent 50%);
    background-size: 100% 100%, 40px 40px, 100% 100%, 100% 100%;
    z-index: 2;
    pointer-events: none;
}

/* Right Side Black Marble Border */
.video-frame-content::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -40px;
    bottom: -20px;
    width: 40px;
    background: #0a0a0a;
    background-image: 
        linear-gradient(135deg, #0a0a0a 0%, #1a1815 50%, #0a0a0a 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(139, 115, 85, 0.03) 2px,
            rgba(139, 115, 85, 0.03) 4px
        ),
        radial-gradient(ellipse at 20% 30%, rgba(184, 134, 11, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(184, 134, 11, 0.12) 0%, transparent 50%);
    background-size: 100% 100%, 40px 40px, 100% 100%, 100% 100%;
    z-index: 2;
    pointer-events: none;
}

/* Video Content Area */
.video-frame-content {
    position: relative;
    z-index: 1;
    background: #ffffff;
    padding: 20px;
    border: 2px solid #e0e0e0;
}

.video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    cursor: pointer;
}

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

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

/* Play Button */
.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.9);
    border: 3px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.video-play-button:hover {
    background: rgba(0, 0, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.6);
}

.video-play-button svg {
    width: 32px;
    height: 32px;
    margin-left: 4px; /* Slight offset for visual centering */
}

.video-iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-iframe-container.visible {
    display: block !important;
}

.video-iframe-container .video-thumbnail-wrapper {
    display: none;
}

.about-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Bottom Black Marble Border with Curve */
.video-frame-bottom {
    position: relative;
    height: 50px;
    margin-top: -1px;
    background: #0a0a0a;
    background-image: 
        linear-gradient(135deg, #0a0a0a 0%, #1a1815 50%, #0a0a0a 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(139, 115, 85, 0.03) 2px,
            rgba(139, 115, 85, 0.03) 4px
        ),
        radial-gradient(ellipse at 20% 30%, rgba(184, 134, 11, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(184, 134, 11, 0.12) 0%, transparent 50%);
    background-size: 100% 100%, 40px 40px, 100% 100%, 100% 100%;
    border-radius: 50% 50% 0 0 / 40% 40% 0 0;
    z-index: 2;
    transform: translateY(1px);
}

.video-frame-bottom::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    height: 50px;
    background: #f8f7f5;
    border-radius: 50% 50% 0 0 / 35% 35% 0 0;
    z-index: 1;
}

/* CTA Section */
.cta-showcase-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #00a551 0%, #1a4d3a 100%);
    color: white;
    text-align: center;
}

.cta-showcase-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title-large {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.cta-buttons-large {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-large,
.btn-secondary-large {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary-large {
    background: white;
    color: #00a551;
    border: 2px solid white;
}

.btn-primary-large:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary-large {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary-large:hover {
    background: white;
    color: #00a551;
    transform: translateY(-3px);
}

/* Responsive for About Page Sections */
@media (max-width: 968px) {
    .about-showcase-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .mission-vision-values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .founder-text-content {
        padding-left: 0;
    }
    
    .about-hero-section {
        min-height: 50vh;
        padding: 4rem 2rem 6rem;
    }
}

@media (max-width: 768px) {
    .mission-vision-item,
    .values-grid-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .founder-image {
        height: 400px;
    }
    
    .about-image-placeholder-large {
        height: 400px;
    }
    
    .cta-buttons-large {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        max-width: 300px;
    }
    
    .video-section {
        padding: 4rem 0;
    }
    
    .video-container {
        padding-bottom: 56.25%;
    }
}

/* Categories Page Styles */
.categories-hero-section {
    min-height: 60vh;
    padding: 6rem 2rem 8rem;
}

.categories-showcase-section {
    padding: 8rem 0;
    background: white;
}

.categories-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.category-card-premium {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.category-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #00a551 0%, #1a4d3a 100%);
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-placeholder-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
}

.category-card-premium:hover .category-image {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 165, 81, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card-premium:hover .category-overlay {
    opacity: 1;
}

.category-view-btn {
    color: white;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.75rem 2rem;
    border: 2px solid white;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.category-card-premium:hover .category-view-btn {
    transform: scale(1.05);
}

.category-card-content {
    padding: 2rem;
}

.category-title {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.category-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 1rem;
}

.category-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.category-count {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.85rem;
    color: #00a551;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.no-categories-message {
    text-align: center;
    padding: 4rem 2rem;
}

.admin-help-box {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.admin-help-box h3 {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.admin-help-box ol {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 2;
    color: #495057;
    padding-left: 1.5rem;
}

.admin-help-box ol li {
    margin-bottom: 0.5rem;
}

/* Responsive for Categories Page */
@media (max-width: 968px) {
    .categories-grid-premium {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .categories-hero-section {
        min-height: 50vh;
        padding: 4rem 2rem 6rem;
    }
}

@media (max-width: 768px) {
    .categories-grid-premium {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-image-wrapper {
        height: 200px;
    }
}

/* Contact Page Styles */
.contact-hero-section {
    min-height: 60vh;
    padding: 6rem 2rem 8rem;
}

.contact-showcase-section {
    padding: 8rem 0;
    background: white;
}

.contact-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-section {
    position: sticky;
    top: 100px;
}

.contact-intro {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 2.5rem;
}

.contact-info-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.contact-info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-info-content h3 {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.contact-info-content p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
    margin: 0;
}

.contact-info-content a {
    color: #00a551;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: #1a4d3a;
    text-decoration: underline;
}

.contact-form-section {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
}

.contact-form-premium {
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group .required {
    color: #dc3545;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00a551;
    box-shadow: 0 0 0 3px rgba(0, 165, 81, 0.1);
}

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

.contact-submit-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 1.2rem 3rem;
    font-size: 1rem;
}

.contact-form-message {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.contact-form-success {
    background: #e8f5e9;
    color: #2e7d32;
    border-left: 4px solid #4caf50;
}

.contact-form-error {
    background: #ffebee;
    color: #c62828;
    border-left: 4px solid #f44336;
}

.contact-form-message p {
    margin: 0;
    font-weight: 500;
}

/* Responsive for Contact Page */
@media (max-width: 968px) {
    .contact-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-section {
        position: static;
    }
    
    .contact-form-section {
        padding: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-hero-section {
        min-height: 50vh;
        padding: 4rem 2rem 6rem;
    }
}

@media (max-width: 768px) {
    .contact-showcase-section {
        padding: 4rem 0;
    }
    
    .contact-form-section {
        padding: 2rem 1.5rem;
    }
    
    .industrial-complex-section {
        padding: 4rem 0;
    }
    
    .industrial-complex-section .container-modern {
        gap: 2.5rem;
    }
    
    .industrial-info-card {
        padding: 3rem;
    }
    
    .industrial-info-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .industrial-info-image-wrapper {
        order: -1;
    }
    
    .industrial-info-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .industrial-info-description {
        font-size: 1rem;
    }
    
    .contact-info-item {
        padding: 1.25rem;
    }
    
    .contact-info-icon {
        font-size: 1.5rem;
    }
    
    .contact-hero-section {
        min-height: 40vh;
        padding: 3rem 1rem 4rem;
    }
}

@media (max-width: 480px) {
    .contact-showcase-section {
        padding: 3rem 0;
    }
    
    .contact-form-section {
        padding: 1.5rem 1rem;
    }
    
    .contact-info-grid {
        gap: 1.5rem;
    }
    
    .about-page-header {
        padding: 2.5rem 0;
    }
    
    .about-page-header-title {
        font-size: clamp(1.25rem, 4vw, 2rem);
        letter-spacing: 1.5px;
    }
    
    .about-showcase-section {
        padding: 3rem 0;
    }
    
    .about-showcase-content {
        gap: 2.5rem;
        padding: 0 1rem;
    }
    
    .about-foremost-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-bottom: 1.5rem;
    }
    
    .about-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .about-logo-container {
        width: 200px;
        height: 200px;
    }
    
    .logo-f,
    .logo-m {
        font-size: 4rem;
    }
    
    .industrial-complex-section {
        padding: 3rem 0;
    }
    
    .industrial-complex-section .container-modern {
        gap: 2rem;
    }
    
    .industrial-info-card {
        padding: 2rem;
    }
    
    .industrial-info-content {
        gap: 2rem;
    }
    
    .industrial-info-title {
        font-size: clamp(1.25rem, 4vw, 1.75rem);
        margin-bottom: 1.5rem;
    }
    
    .industrial-info-description {
        font-size: 0.95rem;
        line-height: 1.8;
    }
    
    .contact-info-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .contact-submit-btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .category-card-content {
        padding: 1.5rem;
    }
    
    .category-title {
        font-size: 1.3rem;
    }
    
    .categories-hero-section {
        min-height: 40vh;
        padding: 3rem 1rem 4rem;
    }
    
    .section-title-large {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* Enhanced Mobile Responsive Styles for All Pages */
@media (max-width: 480px) {
    .container-modern {
        padding: 0 0.75rem;
    }
    
    /* Home Page Mobile */
    .hero-section-brand-large {
        padding: 4rem 0.75rem 6rem;
    }
    
    .brand-title-extra-large {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        line-height: 1.1;
    }
    
    .hero-slogan-text {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }
    
    /* About Page Mobile */
    .about-hero-section {
        min-height: 35vh;
        padding: 2.5rem 0.75rem 4rem;
    }
    
    .about-showcase-section {
        padding: 4rem 0;
    }
    
    .about-text-content h2 {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
        margin-bottom: 1.5rem;
    }
    
    .about-description {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 1.25rem;
    }
    
    .about-image-placeholder-large {
        height: 300px;
    }
    
    .founder-section {
        padding: 3rem 0;
    }
    
    .founder-section .container-modern {
        gap: 2rem;
    }
    
    .founder-profile-card {
        padding: 2rem;
    }
    
    .founder-profile-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .founder-profile-image-wrapper {
        order: -1;
    }
    
    .founder-profile-name {
        font-size: clamp(1.25rem, 4vw, 1.75rem);
    }
    
    .founder-profile-label {
        font-size: 0.9rem;
    }
    
    .founder-profile-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .mission-vision-item {
        padding: 2rem 1.25rem;
    }
    
    .mission-vision-title {
        font-size: 1.5rem;
    }
    
    .mission-vision-description {
        font-size: 1rem;
    }
    
    .values-grid-wrapper {
        padding: 2rem 1.25rem;
    }
    
    .value-item {
        padding: 1.5rem;
    }
    
    .founder-section {
        padding: 4rem 0;
    }
    
    .founder-section .container-modern {
        gap: 2.5rem;
    }
    
    .founder-profile-card {
        padding: 2.5rem;
    }
    
    .founder-profile-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .founder-profile-image-wrapper {
        order: -1;
    }
    
    .founder-profile-name {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .founder-profile-description {
        font-size: 1rem;
    }
    
    .founder-description {
        font-size: 1rem;
    }
    
    .cta-showcase-section {
        padding: 4rem 0;
    }
    
    .cta-title-large {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .cta-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    /* Categories Page Mobile */
    .categories-hero-section {
        min-height: 35vh;
        padding: 2.5rem 0.75rem 4rem;
    }
    
    .categories-showcase-section {
        padding: 4rem 0;
    }
    
    .category-card-content {
        padding: 1.25rem;
    }
    
    .category-title {
        font-size: 1.2rem;
    }
    
    .category-description {
        font-size: 0.9rem;
    }
    
    /* Breadcrumb Mobile */
    .breadcrumb-section {
        padding: 0.5rem 0;
    }
    
    .breadcrumb-list {
        font-size: 0.8rem;
        gap: 0.25rem;
    }
    
    /* Slogan Section Mobile */
    .slogan-section {
        padding: 3rem 0;
    }
    
    .slogan-text-large {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
        padding: 0 1rem;
    }
    
    /* Video Section Mobile */
    .video-section-inline {
        margin-top: 3rem;
        padding-top: 3rem;
    }
    
    .video-wrapper {
        margin-top: 2rem;
    }
    
    /* Section Headers Mobile */
    .section-header-center {
        margin-bottom: 3rem;
    }
    
    .section-title-large {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
}

/* ============================================
   PRODUCT SINGLE PAGE STYLES
   ============================================ */

/* Product Hero Section */
.product-hero-section {
    padding: 4rem 0 6rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Product Image Column */
.product-image-column {
    position: relative;
}

.product-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.product-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.product-image-wrapper:hover .product-main-image {
    transform: scale(1.02);
}

.product-image-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 165, 81, 0.95);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 165, 81, 0.3);
}

.badge-star {
    font-size: 0.9rem;
}

.badge-text {
    font-size: 0.7rem;
}

.product-image-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #00a551 0%, #1a4d3a 50%, #00a551 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 12px;
    min-height: 500px;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.product-image-placeholder p {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Product Info Column */
.product-info-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-category-badge {
    display: inline-block;
    background: rgba(0, 165, 81, 0.1);
    color: #00a551;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: fit-content;
    border: 1px solid rgba(0, 165, 81, 0.2);
}

.product-title-large {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -1px;
}

/* Product Price Section */
.product-price-section {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.price-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #00a551;
}

/* Product Meta Grid */
.product-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.product-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.product-meta-item:hover {
    background: #fff;
    border-color: #00a551;
    box-shadow: 0 4px 15px rgba(0, 165, 81, 0.1);
    transform: translateY(-2px);
}

.meta-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 165, 81, 0.1);
    border-radius: 8px;
    color: #00a551;
}

.meta-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.meta-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.meta-value {
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

/* Product Application Section */
.product-application-section {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #00a551;
}

.application-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.application-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Product Actions Section */
.product-actions-section {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-product {
    flex: 1;
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #00a551;
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #00a551;
    box-shadow: 0 4px 15px rgba(0, 165, 81, 0.3);
}

.btn-primary-product:hover {
    background: #008a43;
    border-color: #008a43;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 165, 81, 0.4);
}

.btn-primary-product svg {
    transition: transform 0.3s ease;
}

.btn-primary-product:hover svg {
    transform: translateX(4px);
}

.btn-secondary-product {
    flex: 1;
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: transparent;
    color: #1a1a1a;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #1a1a1a;
}

.btn-secondary-product:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-2px);
}

.btn-secondary-product svg {
    transition: transform 0.3s ease;
}

.btn-secondary-product:hover svg {
    transform: translateX(-4px);
}

/* Product Description Section */
.product-description-section {
    padding: 6rem 0;
    background: #fff;
}

.description-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.description-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 2rem 0;
    text-align: center;
    letter-spacing: -0.5px;
}

.description-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.description-content p {
    margin-bottom: 1.5rem;
}

.description-content h2,
.description-content h3,
.description-content h4 {
    color: #1a1a1a;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.description-content ul,
.description-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.description-content li {
    margin-bottom: 0.75rem;
}

/* Related Products Section */
.related-products-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.related-product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.related-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.related-product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-product-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f0f0f0;
}

.related-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-product-card:hover .related-product-image {
    transform: scale(1.1);
}

.related-product-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00a551 0%, #1a4d3a 50%, #00a551 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-product-placeholder .placeholder-icon {
    font-size: 3rem;
    color: white;
    opacity: 0.8;
}

.related-product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 165, 81, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.related-product-card:hover .related-product-overlay {
    opacity: 1;
}

.view-product-btn {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.75rem 1.5rem;
    border: 2px solid white;
    border-radius: 50px;
}

.related-product-content {
    padding: 1.5rem;
}

.related-product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.related-product-price {
    font-size: 0.9rem;
    color: #00a551;
    font-weight: 600;
}

/* ============================================
   ENHANCED PRODUCT DETAIL PAGE STYLES
   ============================================ */

/* Enhanced Product Hero Section */
.product-hero-section-enhanced {
    padding: 4rem 0 6rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.product-hero-grid-enhanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-image-column-enhanced {
    position: relative;
}

.product-image-wrapper-enhanced {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    background: #fff;
}

.product-main-image-enhanced {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.product-image-wrapper-enhanced:hover .product-main-image-enhanced {
    transform: scale(1.02);
}

.product-image-badge-enhanced {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 165, 81, 0.95);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 165, 81, 0.3);
    z-index: 2;
}

.product-image-placeholder-enhanced {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #00a551 0%, #1a4d3a 50%, #00a551 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 16px;
    min-height: 500px;
}

.product-info-column-enhanced {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-category-badge-enhanced {
    display: inline-block;
    background: rgba(0, 165, 81, 0.1);
    color: #00a551;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: fit-content;
    border: 1px solid rgba(0, 165, 81, 0.2);
}

.product-title-large-enhanced {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -1px;
}

.product-price-section-enhanced {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.product-price-section-enhanced .price-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-price-section-enhanced .price-value {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #00a551;
}

/* Product Quick Specs */
.product-quick-specs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.quick-spec-item:hover {
    background: #fff;
    border-color: #00a551;
    box-shadow: 0 4px 15px rgba(0, 165, 81, 0.1);
}

.quick-spec-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 165, 81, 0.1);
    border-radius: 8px;
    color: #00a551;
}

.quick-spec-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.quick-spec-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.quick-spec-value {
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

/* Enhanced Product Actions */
.product-actions-section-enhanced {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-product-enhanced {
    flex: 1;
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #00a551;
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #00a551;
    box-shadow: 0 4px 15px rgba(0, 165, 81, 0.3);
}

.btn-primary-product-enhanced:hover {
    background: #008a43;
    border-color: #008a43;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 165, 81, 0.4);
}

.btn-primary-product-enhanced svg {
    transition: transform 0.3s ease;
}

.btn-primary-product-enhanced:hover svg {
    transform: translateX(4px);
}

.btn-secondary-product-enhanced {
    flex: 1;
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: transparent;
    color: #1a1a1a;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #1a1a1a;
}

.btn-secondary-product-enhanced:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-2px);
}

.btn-secondary-product-enhanced svg {
    transition: transform 0.3s ease;
}

.btn-secondary-product-enhanced:hover svg {
    transform: translateX(-4px);
}

/* ============================================
   PRODUCT TABS SECTION
   ============================================ */
.product-tabs-section {
    padding: 6rem 0;
    background: #fff;
}

.product-tabs-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Tabs Navigation */
.product-tabs-nav {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.product-tab-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #666;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: -2px;
}

.product-tab-btn:hover {
    color: #00a551;
    background: rgba(0, 165, 81, 0.05);
}

.product-tab-btn.active {
    color: #00a551;
    border-bottom-color: #00a551;
    background: rgba(0, 165, 81, 0.05);
}

.product-tab-btn svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.product-tab-btn.active svg {
    transform: scale(1.1);
}

/* Tabs Content */
.product-tabs-content {
    position: relative;
}

.product-tab-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.product-tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-panel-content {
    padding: 2rem 0;
}

/* Description Tab */
.product-description-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.product-description-content p {
    margin-bottom: 1.5rem;
}

.product-description-content h2,
.product-description-content h3,
.product-description-content h4 {
    color: #1a1a1a;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-description-content ul,
.product-description-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.product-description-content li {
    margin-bottom: 0.75rem;
}

.product-description-empty {
    text-align: center;
    padding: 3rem 0;
    color: #999;
}

/* Specifications Tab */
.product-specifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.spec-item-detailed {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.spec-item-detailed:hover {
    background: #fff;
    border-color: #00a551;
    box-shadow: 0 4px 15px rgba(0, 165, 81, 0.1);
    transform: translateY(-2px);
}

.spec-item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.spec-item-header svg {
    flex-shrink: 0;
    color: #00a551;
}

.spec-item-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-item-value {
    font-size: 1.1rem;
    color: #555;
    margin: 0;
    font-weight: 500;
}

.product-specifications-empty {
    text-align: center;
    padding: 3rem 0;
    color: #999;
    font-size: 1rem;
}

/* Applications Tab */
.product-applications-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.applications-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(0, 165, 81, 0.1);
    border-radius: 50%;
    color: #00a551;
    margin-bottom: 2rem;
}

.applications-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
}

.applications-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: left;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #00a551;
}

/* Additional Info Tab */
.product-additional-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.additional-info-item {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.additional-info-item:hover {
    background: #fff;
    border-color: #00a551;
    box-shadow: 0 4px 15px rgba(0, 165, 81, 0.1);
    transform: translateY(-2px);
}

.info-item-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
}

.info-item-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Product CTA Section */
.product-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: white;
}

.product-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.product-cta-content .cta-title-large {
    color: white;
    margin-bottom: 1rem;
}

.product-cta-content .cta-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.product-cta-content .cta-buttons-large {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsive - Enhanced Product Page */
@media (max-width: 768px) {
    .product-hero-section-enhanced {
        padding: 2rem 0 4rem;
    }
    
    .product-hero-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .product-image-wrapper-enhanced {
        border-radius: 12px;
    }
    
    .product-image-badge-enhanced {
        top: 1rem;
        right: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }
    
    .product-image-placeholder-enhanced {
        min-height: 300px;
    }
    
    .product-info-column-enhanced {
        gap: 1.5rem;
    }
    
    .product-title-large-enhanced {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .product-price-section-enhanced {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 0;
    }
    
    .product-price-section-enhanced .price-value {
        font-size: 1.5rem;
    }
    
    .product-quick-specs {
        gap: 0.75rem;
    }
    
    .quick-spec-item {
        padding: 0.875rem;
    }
    
    .quick-spec-icon {
        width: 35px;
        height: 35px;
    }
    
    .product-actions-section-enhanced {
        flex-direction: column;
    }
    
    .btn-primary-product-enhanced,
    .btn-secondary-product-enhanced {
        width: 100%;
        min-width: unset;
        padding: 1rem 2rem;
    }
    
    /* Product Tabs Mobile */
    .product-tabs-section {
        padding: 4rem 0;
    }
    
    .product-tabs-nav {
        flex-direction: column;
        gap: 0;
        border-bottom: 2px solid #e9ecef;
    }
    
    .product-tab-btn {
        width: 100%;
        justify-content: flex-start;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid #e9ecef;
        border-left: 3px solid transparent;
        margin-bottom: 0;
    }
    
    .product-tab-btn.active {
        border-left-color: #00a551;
        border-bottom-color: #e9ecef;
    }
    
    .tab-panel-content {
        padding: 1.5rem 0;
    }
    
    .product-specifications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .spec-item-detailed {
        padding: 1.5rem;
    }
    
    .product-additional-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .additional-info-item {
        padding: 1.5rem;
    }
    
    .applications-text {
        padding: 1.5rem;
        font-size: 1rem;
    }
    
    .product-description-content {
        font-size: 1rem;
    }
    
    .product-cta-section {
        padding: 4rem 0;
    }
    
    .product-cta-content .cta-buttons-large {
        flex-direction: column;
    }
    
    .product-cta-content .btn-primary-large,
    .product-cta-content .btn-secondary-large {
        width: 100%;
    }
    
    /* Legacy product page styles for backward compatibility */
    .product-hero-section {
        padding: 2rem 0 4rem;
    }
    
    .product-hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .product-image-wrapper {
        border-radius: 8px;
    }
    
    .product-image-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.65rem;
    }
    
    .product-image-placeholder {
        min-height: 300px;
    }
    
    .placeholder-icon {
        font-size: 3rem;
    }
    
    .product-info-column {
        gap: 1.5rem;
    }
    
    .product-title-large {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .product-price-section {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 0;
    }
    
    .price-value {
        font-size: 1.5rem;
    }
    
    .product-meta-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-meta-item {
        padding: 1rem;
    }
    
    .meta-icon {
        width: 35px;
        height: 35px;
    }
    
    .product-application-section {
        padding: 1.25rem;
    }
    
    .product-actions-section {
        flex-direction: column;
    }
    
    .btn-primary-product,
    .btn-secondary-product {
        width: 100%;
        min-width: unset;
        padding: 1rem 2rem;
    }
    
    .product-description-section {
        padding: 4rem 0;
    }
    
    .description-content {
        font-size: 1rem;
    }
    
    .related-products-section {
        padding: 4rem 0;
    }
    
    .related-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .related-product-content {
        padding: 1.25rem;
    }
    
    .product-cta-section {
        padding: 4rem 0;
    }
    
    .product-cta-content .cta-buttons-large {
        flex-direction: column;
    }
    
    .product-cta-content .btn-primary-large,
    .product-cta-content .btn-secondary-large {
        width: 100%;
    }
}

/* ============================================
   PRODUCT LIST PAGE STYLES
   ============================================ */

/* Products Hero Section */
.products-hero-section {
    min-height: 50vh;
    padding: 4rem 0 6rem;
}

/* Products List Section */
.products-list-section {
    padding: 6rem 0;
    background: #fff;
}

.products-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Product Card Premium */
.product-card-premium {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.product-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-image-wrapper-premium {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f0f0f0;
}

.product-image-premium {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card-premium:hover .product-image-premium {
    transform: scale(1.1);
}

.product-image-placeholder-premium {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00a551 0%, #1a4d3a 50%, #00a551 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-placeholder-premium .placeholder-icon {
    font-size: 4rem;
    color: white;
    opacity: 0.8;
}

.product-overlay-premium {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 165, 81, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-premium:hover .product-overlay-premium {
    opacity: 1;
}

.view-product-btn-premium {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.view-product-btn-premium:hover {
    background: white;
    color: #00a551;
}

.product-price-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 165, 81, 0.95);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 165, 81, 0.3);
    z-index: 2;
}

.product-card-content-premium {
    padding: 1.75rem;
}

.product-category-badge-small {
    display: inline-block;
    background: rgba(0, 165, 81, 0.1);
    color: #00a551;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(0, 165, 81, 0.2);
}

.product-title-premium {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.product-card-premium:hover .product-title-premium {
    color: #00a551;
}

.product-meta-premium {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.product-meta-premium svg {
    flex-shrink: 0;
    color: #00a551;
}

.product-meta-premium-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.75rem;
}

/* ============================================
   PREMIUM CATEGORY HERO BANNER SECTION
   ============================================ */
.category-hero-banner-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 0;
}

.category-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.category-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-hero-gradient {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 50%, #00a551 100%);
}

.category-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.85) 0%,
        rgba(44, 62, 80, 0.75) 50%,
        rgba(0, 165, 81, 0.6) 100%
    );
    z-index: 1;
}

.category-hero-banner-section .hero-decorative-circle {
    z-index: 1;
}

.category-hero-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.category-hero-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.badge-icon {
    font-size: 1.2rem;
    color: #00a551;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.category-hero-banner-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.category-hero-banner-description {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    line-height: 1.7;
    margin: 0 0 2.5rem 0;
    opacity: 0.95;
    font-weight: 300;
}

.category-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.category-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #00a551;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    font-weight: 500;
}

.stat-icon {
    font-size: 1.5rem;
    color: #00a551;
}

.category-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* ============================================
   ENHANCED CATEGORY PRODUCTS SECTION
   ============================================ */
.category-products-list-section {
    padding: 4rem 0 6rem;
    background: #f8f9fa;
}

.category-products-header {
    margin-bottom: 4rem;
}

.category-products-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.category-products-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    letter-spacing: -1px;
}

.title-accent {
    color: #00a551;
    margin-right: 0.5rem;
}

.category-products-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Enhanced Product Grid */
.category-products-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Simple Product Card */
.category-product-card-simple {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.category-product-card-simple:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.category-product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-product-image-container {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f5f5f5;
}

.category-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-product-card-simple:hover .category-product-image {
    transform: scale(1.05);
}

.category-product-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00a551 0%, #1a4d3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-star {
    font-size: 3rem;
    color: white;
    opacity: 0.7;
}

.category-product-price-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 165, 81, 0.95);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.category-product-card-body {
    padding: 1.5rem;
}

.category-product-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.category-product-card-simple:hover .category-product-name {
    color: #00a551;
}

.category-product-meta-simple {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-meta-tag {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: #f8f9fa;
    color: #666;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.category-product-card-simple:hover .product-meta-tag {
    background: rgba(0, 165, 81, 0.1);
    color: #00a551;
    border-color: rgba(0, 165, 81, 0.2);
}

/* Category Products Pagination */
.category-products-pagination {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

/* Category No Products */
.category-no-products {
    padding: 6rem 0;
    text-align: center;
}

.category-no-products-content {
    max-width: 600px;
    margin: 0 auto;
}

.no-products-icon-wrapper {
    margin-bottom: 2rem;
}

.no-products-star {
    font-size: 5rem;
    color: #00a551;
    opacity: 0.6;
    display: inline-block;
}

.no-products-heading {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
}

.no-products-message {
    font-size: 1.1rem;
    color: #666;
    margin: 0 0 2.5rem 0;
    line-height: 1.6;
}

.no-products-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Category CTA Section */
.category-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: white;
}

.category-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.category-cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: white;
    margin: 0 0 1rem 0;
    letter-spacing: -1px;
}

.category-cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2.5rem 0;
    line-height: 1.6;
}

.category-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Products Pagination */
.products-pagination {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.pagination-premium {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-premium .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 1rem;
    background: white;
    color: #1a1a1a;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.pagination-premium .page-numbers:hover {
    background: #00a551;
    color: white;
    border-color: #00a551;
    transform: translateY(-2px);
}

.pagination-premium .page-numbers.current {
    background: #00a551;
    color: white;
    border-color: #00a551;
}

.pagination-premium .page-numbers.prev,
.pagination-premium .page-numbers.next {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-premium .page-numbers svg {
    flex-shrink: 0;
}

/* No Products Message */
.no-products-message {
    padding: 6rem 0;
    text-align: center;
}

.no-products-content {
    max-width: 600px;
    margin: 0 auto;
}

.no-products-icon {
    font-size: 5rem;
    color: #00a551;
    display: block;
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.no-products-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
}

.no-products-text {
    font-size: 1.1rem;
    color: #666;
    margin: 0 0 2.5rem 0;
    line-height: 1.6;
}

.no-products-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Products CTA Section */
.products-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: white;
}

.products-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.products-cta-content .cta-title-large {
    color: white;
    margin-bottom: 1rem;
}

.products-cta-content .cta-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

/* Category Products Section */
.category-products-section {
    background: #f8f9fa;
}

/* Mobile Responsive - Product List Pages */
@media (max-width: 768px) {
    .products-hero-section {
        min-height: 35vh;
        padding: 2.5rem 0 4rem;
    }
    
    .products-list-section {
        padding: 4rem 0;
    }
    
    .products-grid-premium {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .product-card-content-premium {
        padding: 1.5rem;
    }
    
    .product-title-premium {
        font-size: 1.1rem;
    }
    
    .product-meta-premium-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    /* Premium Category Hero Banner Mobile */
    .category-hero-banner-section {
        min-height: 60vh;
        padding: 4rem 0;
    }
    
    .category-hero-banner-content {
        padding: 0 1rem;
    }
    
    .category-hero-badge-large {
        padding: 0.6rem 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .badge-text {
        font-size: 0.65rem;
    }
    
    .category-hero-banner-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
        margin-bottom: 1rem;
    }
    
    .category-hero-banner-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .category-hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
    
    .category-stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Enhanced Category Products Mobile */
    .category-products-list-section {
        padding: 4rem 0;
    }
    
    .category-products-header {
        margin-bottom: 3rem;
    }
    
    .category-products-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    
    .category-products-subtitle {
        font-size: 1rem;
    }
    
    .category-products-grid-enhanced {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .category-product-card-body {
        padding: 1.25rem;
    }
    
    .category-product-name {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .category-product-meta-simple {
        gap: 0.4rem;
    }
    
    .product-meta-tag {
        font-size: 0.8rem;
        padding: 0.3rem 0.65rem;
    }
    
    .category-product-price-tag {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.4rem 0.85rem;
        font-size: 0.8rem;
    }
    
    .category-products-pagination {
        margin-top: 3rem;
    }
    
    .category-no-products {
        padding: 4rem 0;
    }
    
    .no-products-star {
        font-size: 4rem;
    }
    
    .no-products-heading {
        font-size: clamp(1.6rem, 4vw, 2rem);
    }
    
    .no-products-actions {
        flex-direction: column;
    }
    
    .no-products-actions .btn-primary-large,
    .no-products-actions .btn-secondary-large {
        width: 100%;
    }
    
    .category-cta-section {
        padding: 4rem 0;
    }
    
    .category-cta-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    
    .category-cta-buttons {
        flex-direction: column;
    }
    
    .category-cta-buttons .btn-primary-large,
    .category-cta-buttons .btn-secondary-large {
        width: 100%;
    }
    
    .products-pagination {
        margin-top: 3rem;
    }
    
    .pagination-premium {
        flex-wrap: wrap;
    }
    
    .pagination-premium .page-numbers {
        min-width: 40px;
        height: 40px;
        padding: 0 0.75rem;
        font-size: 0.85rem;
    }
    
    .no-products-message {
        padding: 4rem 0;
    }
    
    .no-products-icon {
        font-size: 4rem;
    }
    
    .no-products-actions {
        flex-direction: column;
    }
    
    .no-products-actions .btn-primary-large,
    .no-products-actions .btn-secondary-large {
        width: 100%;
    }
    
    .products-cta-section {
        padding: 4rem 0;
    }
    
    .products-cta-content .cta-buttons-large {
        flex-direction: column;
    }
    
    .products-cta-content .btn-primary-large,
    .products-cta-content .btn-secondary-large {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .products-grid-premium {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .product-price-badge {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .category-hero-image {
        border-radius: 8px;
    }
}


/* ============================================
   HOME REDESIGN - EDITORIAL LAYOUT
   ============================================ */

.home-modern {
    background: #f7f5f2;
}

.home-hero {
    position: relative;
    min-height: 78vh;
    color: #f6f2ea;
    overflow: hidden;
}

.home-hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 78vh;
}

.home-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    display: flex;
    align-items: center;
    z-index: 1;
}

.home-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.home-hero-slide .home-hero-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(0.9);
    transition: transform 8s ease-out;
}

.home-hero-slide.is-active .home-hero-media {
    transform: scale(1.05);
}

.home-hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.15), transparent 55%);
    pointer-events: none;
    z-index: 1;
}

.home-hero-slide .container-modern {
    position: relative;
    z-index: 2;
    width: 100%;
}

.home-hero-content {
    position: relative;
    z-index: 2;
    max-width: 520px;
}

.home-hero-eyebrow {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    color: #ffffff;
    opacity: 0.9;
}

.home-hero-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    color: #ffffff;
}

.home-hero-subtext {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 0;
    color: #ffffff;
}

.home-hero-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
    pointer-events: none;
}

.hero-prev,
.hero-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.hero-prev:active,
.hero-next:active {
    transform: scale(0.95);
}

.hero-prev svg,
.hero-next svg {
    width: 20px;
    height: 20px;
}

.home-hero-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    z-index: 10;
}

.home-hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
}

.home-hero-dots .dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.home-hero-dots .dot.is-active {
    background: #00a551;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 12px rgba(0, 165, 81, 0.6);
    transform: scale(1.3);
}

.home-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 7rem 0 4rem;
    text-align: left;
}

.home-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: #ffffff;
}

.home-section-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: #f7f2ea;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.home-section-title-center {
    text-align: center;
    color: #1b1b1b;
}

.home-about {
    position: relative;
    background: #1f1e1c;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 6rem 0 0;
    overflow: hidden;
    margin-bottom: 0;
}

.home-about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    pointer-events: none;
    z-index: 1;
}

.home-about-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    padding: 4rem 2rem 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.home-about-title {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2.5rem;
    line-height: 1.1;
}

.home-about-text {
    position: relative;
    z-index: 2;
}

.home-about-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #ffffff;
    margin-bottom: 1.8rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.home-about-images {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    z-index: 2;
    height: 100%;
    min-height: 500px;
}

.home-about-image {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 2px solid #ffffff;
    background: #ffffff;
    display: block;
    object-fit: cover;
}

.home-about-image.is-primary {
    position: relative;
    z-index: 2;
    width: 90%;
    margin-left: 0;
    margin-right: auto;
}

.home-about-image.is-secondary {
    width: 85%;
    max-width: 420px;
    margin-left: 3rem;
    margin-top: -4rem;
    position: relative;
    z-index: 1;
    opacity: 1;
    align-self: flex-end;
}

/* Bottom Curve with SHOW REEL Title */
.home-about-bottom-curve {
    position: relative;
    width: 100%;
    height: 180px;
    background: #f7f5f2;

    border-radius: 100% 100% 0 0;
    margin-top: -100px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 4rem;
}

.showreel-title {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin: 0;
}

.home-showreel {
    position: relative;
    padding: 0 0 4rem;
    background: #f7f5f2;
    overflow: hidden;
    margin-top: -80px;
}

.home-showreel::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -110px;
    width: 160%;
    height: 220px;
    transform: translateX(-50%);
    background: #f7f5f2;
    border-radius: 50%;
    z-index: 1;
}

.home-showreel .container-modern {
    position: relative;
    z-index: 2;
}

.home-showreel-frame {
    background: transparent;
    border-radius: 0;
    padding: 1.5rem 0 2rem;
    box-shadow: none;
    border: none;
}

.showreel-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
}

.showreel-carousel::-webkit-scrollbar {
    display: none;
}

.showreel-track {
    display: flex;
    gap: 1.5rem;
    scroll-snap-type: x mandatory;
    padding: 0.25rem 0 0.5rem;
}

.showreel-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #2a2a2a;
    min-width: 210px;
    max-width: 230px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showreel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.showreel-card-link {
    color: inherit;
    text-decoration: none;
    display: grid;
    gap: 0.75rem;
}

.showreel-card-image,
.showreel-card-placeholder {
    width: 100%;
    height: 180px;
    border-radius: 14px;
    object-fit: cover;
    background: #d9d3c9;
}

.showreel-card-content {
    display: grid;
    gap: 0.35rem;
    padding: 0 0.25rem 0.5rem;
}

.showreel-card-title {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: #1b1b1b;
    text-transform: none;
}

.showreel-card-text {
    font-size: 0.78rem;
    line-height: 1.5;
    color: #4b4b4b;
}

.home-categories {
    position: relative;
    padding: 0 0 6rem;
    background: #0a0a0a;
    color: #ffffff;
    overflow: hidden;
}

/* Dark Marble Background with Veining */
.home-categories::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, #0a0a0a 0%, #1a1815 50%, #0a0a0a 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(139, 115, 85, 0.03) 2px,
            rgba(139, 115, 85, 0.03) 4px
        ),
        radial-gradient(ellipse at 20% 30%, rgba(184, 134, 11, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(184, 134, 11, 0.12) 0%, transparent 50%);
    background-size: 100% 100%, 40px 40px, 100% 100%, 100% 100%;
    z-index: 0;
}

.home-categories::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(90deg, transparent 0%, rgba(184, 134, 11, 0.05) 25%, transparent 50%, rgba(184, 134, 11, 0.05) 75%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(139, 115, 85, 0.08) 30%, transparent 60%, rgba(139, 115, 85, 0.08) 80%, transparent 100%);
    background-size: 200% 100%, 100% 200%;
    animation: marble-vein 20s ease-in-out infinite;
    opacity: 0.6;
    z-index: 0;
}

/* Green Gradient Banner */
.categories-header-banner {
    position: relative;
    width: 100%;
    padding: 4rem 0;
    background: linear-gradient(90deg, rgba(12, 79, 47, 0.95) 0%, rgba(0, 165, 81, 0.95) 50%, rgba(12, 79, 47, 0.95) 100%);
    border-radius: 0 0 50% 50% / 0 0 30px 30px;
    margin-bottom: 4rem;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.categories-banner-title {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    text-align: center;
}

.home-category-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.home-category-card {
    background: rgba(30, 30, 30, 0.65);
    border-radius: 32px;
    padding: 2.25rem 2.25rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    min-height: 360px;
}

.home-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.home-category-link {
    color: inherit;
    text-decoration: none;
    display: grid;
    grid-template-rows: auto 1fr auto;
    height: 100%;
}

.home-category-image-wrapper {
    
}

.home-category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.home-category-card:hover .home-category-image {
    transform: scale(1.05);
}

.home-category-meta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1.75rem 0 0;
    background: transparent;
}

.home-category-title {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff;
    line-height: 1.2;
}

.home-category-arrow {
    width: 26px;
    height: 26px;
    color: #ffffff;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.home-category-card:hover .home-category-arrow {
    transform: translate(3px, -3px);
}

.home-video {
    background: #0f0f0f;
    padding: 5rem 0 6rem;
    margin-top: -3rem;
    position: relative;
    overflow: hidden;
}

.home-video .container-modern {
    max-width: 1000px;
}

.home-video::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: min(1100px, 92vw);
    height: 100%;
    transform: translateX(-50%);
   
    pointer-events: none;
}

.home-video-media {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
}

.home-video-media::before,
.home-video-media::after {
    content: '';
    position: absolute;
    left: -120px;
    right: -120px;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
    pointer-events: none;
}

.home-video-media::before {
    top: 0;
}

.home-video-media::after {
    bottom: 0;
}

.home-video-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.home-video-play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.home-video-play::before {
    content: '';
    position: absolute;
    left: 26px;
    top: 19px;
    width: 0;
    height: 0;
    border-left: 16px solid #0f0f0f;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.home-featured {
    background: #ffffff;
    padding: 0;
    border-top: 1px solid #ded9d1;
    border-bottom: 1px solid #ded9d1;
}

.home-featured-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
}

.home-featured-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;
    padding: 2.25rem 0;
    border-top: 1px solid #ded9d1;
}

.home-featured-block:first-child {
    border-top: none;
}

.home-featured-title {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #151515;
    margin: 0;
}

.home-featured-logos {
    display: flex;
    flex-wrap: nowrap;
    gap: 2.25rem;
    align-items: center;
    justify-content: flex-end;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0.25rem 0 0.5rem;
}

.home-featured-logos img {
    width: auto;
    max-height: 120px;
    object-fit: contain;
    filter: none;
    opacity: 1;
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.home-featured-logos::-webkit-scrollbar {
    height: 6px;
}

.home-featured-logos::-webkit-scrollbar-track {
    background: rgba(27, 27, 27, 0.08);
    border-radius: 999px;
}

.home-featured-logos::-webkit-scrollbar-thumb {
    background: rgba(27, 27, 27, 0.25);
    border-radius: 999px;
}

.home-quicklinks {
    background: #0a0a0a;
    padding: 4rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.home-quicklinks::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, #0a0a0a 0%, #1a1815 50%, #0a0a0a 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(139, 115, 85, 0.03) 2px,
            rgba(139, 115, 85, 0.03) 4px
        ),
        radial-gradient(ellipse at 20% 30%, rgba(184, 134, 11, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(184, 134, 11, 0.12) 0%, transparent 50%);
    background-size: 100% 100%, 40px 40px, 100% 100%, 100% 100%;
    opacity: 1;
    pointer-events: none;
}

.home-quicklinks::after {
    content: '';
    position: absolute;
    left: 50%;
    top: -160px;
    width: 190%;
    height: 260px;
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: 0 0 100% 100%;
    pointer-events: none;
    z-index: 0;
}

.home-quicklinks-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.home-quicklink {
    position: relative;
    width: min(220px, 45vw);
    aspect-ratio: 4 / 5;
    border-radius: 28px;
    background: #1b1b1b;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    display: grid;
    place-items: end center;
    padding: 1.1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-quicklink::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 0;
}

.home-quicklink::after {
    content: '';
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

.home-quicklink:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}

.home-quicklink span,
.home-quicklink {
    z-index: 1;
}

.home-quicklink:nth-child(1)::after {
    background-image: url('https://images.unsplash.com/photo-1452626038306-9aae5e071dd3?q=80&w=1200&auto=format&fit=crop');
}

.home-quicklink:nth-child(2)::after {
    background-image: url('https://images.unsplash.com/photo-1472214103451-9374bd1c798e?q=80&w=1200&auto=format&fit=crop');
}

.home-quicklink:nth-child(3)::after {
    background-image: url('https://images.unsplash.com/photo-1489515217757-5fd1be406fef?q=80&w=1200&auto=format&fit=crop');
}

.home-quicklink:nth-child(4)::after {
    background-image: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?q=80&w=1200&auto=format&fit=crop');
}

.home-quicklink:nth-child(5)::after {
    background-image: url('https://images.unsplash.com/photo-1471879832106-c7ab9e0cee23?q=80&w=1200&auto=format&fit=crop');
}

.home-industrial {
    position: relative;
    padding: 0;
    background: #0a0a0a;
    color: #ffffff;
    overflow: hidden;
    min-height: 100vh;
}
.home-industrial::before {
    display: none;
}



/* Dark Marble Background with Golden-Brown Veining */
.home-industrial-background {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, #0a0a0a 0%, #1a1815 50%, #0a0a0a 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(139, 115, 85, 0.03) 2px,
            rgba(139, 115, 85, 0.03) 4px
        ),
        radial-gradient(ellipse at 20% 30%, rgba(184, 134, 11, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(184, 134, 11, 0.12) 0%, transparent 50%);
    background-size: 100% 100%, 40px 40px, 100% 100%, 100% 100%;
    z-index: 0;
}

.home-industrial-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(90deg, transparent 0%, rgba(184, 134, 11, 0.05) 25%, transparent 50%, rgba(184, 134, 11, 0.05) 75%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(139, 115, 85, 0.08) 30%, transparent 60%, rgba(139, 115, 85, 0.08) 80%, transparent 100%);
    background-size: 200% 100%, 100% 200%;
    animation: marble-vein 20s ease-in-out infinite;
    opacity: 0.6;
}

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

/* Navigation Cards Section */
.industrial-nav-cards {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    padding: 4rem 2rem 5rem;
    flex-wrap: wrap;
    margin-top: -2rem;
}

.industrial-nav-card {
    position: relative;
    width: 200px;
    height: 270px;
    background: rgba(20, 20, 20, 0.55);
    border-radius: 36px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.industrial-nav-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 35%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.industrial-nav-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.8);
}

.industrial-nav-card-image {
    position: absolute;
    inset: 0;
    margin: 0;
    border: none;
    border-radius: inherit;
    overflow: hidden;
    z-index: 0;
}

.industrial-nav-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.industrial-nav-card-label {
    height: auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: #ffffff;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    text-align: center;
    background: transparent;
    padding: 0 1rem 1.25rem;
    position: relative;
    z-index: 2;
    text-transform: none;
}

.home-industrial .container-modern {
    position: relative;
    z-index: 2;
    padding: 0 2rem 6rem;
}

.home-industrial-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    padding-top: 2rem;
}

.home-industrial-text {
    max-width: 100%;
}

.home-industrial-title {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    line-height: 1.1;
}

.home-industrial-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #ffffff;
    margin-bottom: 1.8rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.home-industrial-images {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
}

.home-industrial-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
}

.home-industrial-image.is-primary {
    position: relative;
    z-index: 2;
}

.home-industrial-image.is-secondary {
    width: 85%;
    max-width: 420px;
    margin-right: 3rem;
    margin-top: -4rem;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

@media (max-width: 980px) {
    .home-about-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 1.5rem 5rem;
    }

    .home-about-images {
        align-items: center;
        order: -1;
        min-height: 400px;
    }

    .home-about-image.is-primary {
        width: 85%;
        margin-left: auto;
        margin-right: auto;
    }

    .home-about-image.is-secondary {
        margin-left: 2rem;
        margin-top: -3rem;
        width: 75%;
        align-self: flex-end;
    }
    
    .home-about-title {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 2rem;
    }
    
    .home-about-text p {
        font-size: 1rem;
    }
    
    .home-about-bottom-curve {
        height: 150px;
        margin-top: -80px;
        padding-top: 3rem;
    }
    
    .showreel-title {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }
    
    .home-showreel {
        margin-top: -60px;
    }
    
    .categories-header-banner {
        padding: 3rem 0;
        margin-bottom: 3rem;
    }
    
    .categories-banner-title {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
        letter-spacing: 2px;
    }
    
    .home-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .home-category-image-wrapper {
        height: 180px;
    }
    
    .home-category-meta {
        padding: 1.25rem;
    }
    
    .home-category-title {
        font-size: 0.9rem;
    }
    
    .industrial-nav-cards {
        gap: 1rem;
        padding: 3rem 1rem 4rem;
        margin-top: -1.5rem;
    }
    
    .industrial-nav-card {
        width: 160px;
        height: 200px;
        border-radius: 24px 24px 10px 10px;
    }
    
    .industrial-nav-card::before {
        height: 28px;
        border-radius: 26px 26px 0 0;
    }
    
    .industrial-nav-card-image {
        height: 145px;
        border-radius: 24px 24px 0 0;
    }
    
    .industrial-nav-card-label {
        height: 55px;
        font-size: 0.9rem;
    }
    
    .home-industrial-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-top: 1.5rem;
    }
    
    .home-industrial-images {
        align-items: center;
        order: -1;
    }
    
    .home-industrial-image.is-secondary {
        margin-right: 0;
        margin-top: -3rem;
        width: 80%;
    }
    
    .home-industrial-title {
        font-size: clamp(2rem, 4vw, 3.5rem);
        margin-bottom: 2rem;
    }
    
    .home-industrial-text p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .industrial-nav-cards {
        gap: 0.75rem;
        padding: 2rem 0.5rem 3rem;
        margin-top: -1rem;
    }
    
    .industrial-nav-card {
        width: 140px;
        height: 180px;
        border-radius: 22px 22px 8px 8px;
    }
    
    .industrial-nav-card::before {
        height: 24px;
        border-radius: 24px 24px 0 0;
    }
    
    .industrial-nav-card-image {
        height: 125px;
        border-radius: 22px 22px 0 0;
    }
    
    .industrial-nav-card-label {
        height: 55px;
        font-size: 0.8rem;
        padding: 0 0.5rem;
    }
    
    .home-industrial .container-modern {
        padding: 0 1rem 4rem;
    }
    
    .home-industrial-inner {
        gap: 2.5rem;
        padding-top: 1rem;
    }
    
    .home-industrial-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
        margin-bottom: 1.5rem;
        letter-spacing: 1px;
    }
    
    .home-industrial-text p {
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }
    
    .home-industrial-image {
        max-width: 100%;
        border-radius: 16px;
    }
    
    .home-industrial-image.is-secondary {
        margin-right: 1.5rem;
        margin-top: -2.5rem;
        width: 75%;
    }
}

@media (max-width: 480px) {
    .industrial-nav-cards {
        gap: 0.5rem;
        padding: 1.5rem 0.25rem 2.5rem;
        margin-top: -0.5rem;
    }
    
    .industrial-nav-card {
        width: 110px;
        height: 150px;
        border-radius: 20px 20px 8px 8px;
    }
    
    .industrial-nav-card::before {
        height: 22px;
        border-radius: 22px 22px 0 0;
    }
    
    .industrial-nav-card-image {
        height: 105px;
        border-radius: 20px 20px 0 0;
    }
    
    .industrial-nav-card-label {
        height: 45px;
        font-size: 0.7rem;
        padding: 0 0.25rem;
    }
    
    .home-industrial .container-modern {
        padding: 0 0.75rem 3rem;
    }
    
    .home-industrial-inner {
        gap: 2rem;
    }
    
    .home-industrial-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 1.25rem;
    }
    
    .home-industrial-text p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .home-industrial-image.is-secondary {
        margin-right: 1rem;
        margin-top: -2rem;
        width: 70%;
    }
}

@media (max-width: 980px) {
    .home-featured-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .home-hero-controls {
        padding: 0 1rem;
    }
    
    .hero-prev,
    .hero-next {
        width: 40px;
        height: 40px;
    }
    
    .hero-prev svg,
    .hero-next svg {
        width: 16px;
        height: 16px;
    }
    
    .home-hero-dots {
        bottom: 2rem;
    }
    
    .home-hero-dots .dot {
        width: 10px;
        height: 10px;
    }
    
    .home-hero-inner {
        grid-template-columns: 1fr;
        padding: 5rem 0 3rem;
    }

    .home-hero-visual {
        justify-content: flex-start;
    }
    
    .home-about {
        padding: 4rem 0 0;
    }
    
    .home-about-inner {
        padding: 2.5rem 1rem 4rem;
        gap: 2.5rem;
    }
    
    .home-about-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
    }
    
    .home-about-text p {
        font-size: 0.95rem;
        line-height: 1.8;
    }
    
    .home-about-image {
        max-width: 100%;
        border-radius: 14px;
        border: 2px solid #ffffff;
    }
    
    .home-about-image.is-primary {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .home-about-image.is-secondary {
        margin-left: 1.5rem;
        margin-top: -2.5rem;
        width: 70%;
        align-self: flex-end;
    }
    
    .home-about-bottom-curve {
        height: 120px;
        margin-top: -60px;
        padding-top: 2.5rem;
    }
    
    .showreel-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .categories-header-banner {
        padding: 2.5rem 0;
        margin-bottom: 2.5rem;
    }
    
    .categories-banner-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
        letter-spacing: 1.5px;
    }
    
    .home-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        padding: 0 1rem;
    }
    
    .home-category-image-wrapper {
        height: 160px;
    }
    
    .home-category-meta {
        padding: 1rem;
    }
    
    .home-category-title {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }

    .home-showreel-frame {
        border-radius: 32px;
        padding: 2rem;
    }

    .home-video-image {
        height: 240px;
    }

    .home-category-image {
        height: 150px;
    }
}

@media (max-width: 540px) {
    .home-hero-title {
        font-size: 2.2rem;
    }

    .home-hero-subtext {
        font-size: 1rem;
    }

    .showreel-card {
        min-width: 200px;
    }

    .home-video {
        margin-top: -2rem;
    }
}

@media (max-width: 480px) {
    .home-about {
        padding: 3rem 0 0;
    }
    
    .home-about-inner {
        padding: 2rem 0.75rem 3rem;
    }
    
    .home-about-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        letter-spacing: 1px;
    }
    
    .home-about-text p {
        font-size: 0.9rem;
    }
    
    .home-about-image.is-primary {
        width: 85%;
    }
    
    .home-about-image.is-secondary {
        width: 65%;
        margin-left: 1rem;
        margin-top: -2rem;
    }
    
    .home-about-bottom-curve {
        height: 100px;
        margin-top: -50px;
        padding-top: 2rem;
    }
    
    .showreel-title {
        font-size: clamp(1.25rem, 4vw, 1.75rem);
    }
    
    .categories-header-banner {
        padding: 2rem 0;
        margin-bottom: 2rem;
    }
    
    .categories-banner-title {
        font-size: clamp(1.25rem, 4vw, 1.75rem);
        letter-spacing: 1px;
    }
    
    .home-category-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.75rem;
    }
    
    .home-category-image-wrapper {
        height: 180px;
    }
    
    .home-category-meta {
        padding: 1rem;
    }
    
    .home-category-title {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
}

/* ============================================
   INSTAGRAM SECTION
   ============================================ */

.instagram-section {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
    border-top: 1px solid #ded9d1;
}

.instagram-section .container-modern {
    max-width: 1200px;
}

.instagram-content-wrapper {
    margin-top: 3rem;
}

.instagram-feed-container {
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Instagram Profile Embed */
.instagram-profile-embed-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.instagram-profile-embed {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    margin-bottom: 2rem;
}

.instagram-profile-embed iframe {
    width: 100%;
    border: none;
    display: block;
}

.instagram-feed-footer {
    text-align: center;
    margin-top: 2rem;
}

.instagram-view-profile-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.3);
}

.instagram-view-profile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(188, 24, 136, 0.4);
    color: white;
}

.instagram-view-profile-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.instagram-view-profile-btn:hover svg {
    transform: scale(1.1);
}

/* Instagram Feed Grid (for individual posts) */
.instagram-feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.instagram-feed-item {
    width: 100%;
    min-height: 400px;
}

.instagram-feed-item .instagram-post-embed {
    width: 100%;
    height: 100%;
}

.instagram-feed-item blockquote.instagram-media {
    width: 100% !important;
    max-width: 100% !important;
    min-width: auto !important;
    margin: 0 !important;
}

/* Instagram Feed Plugin - Smash Balloon Styling */
#sb_instagram {
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
}

#sb_instagram .sbi_items_wrapper {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

#sb_instagram .sbi_item {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    border: 1px solid #e0e0e0 !important;
    background: #ffffff !important;
    position: relative !important;
}

#sb_instagram .sbi_item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    border-color: #d0d0d0 !important;
}

#sb_instagram .sbi_photo {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

#sb_instagram .sbi_photo img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover !important;
    border-radius: 0 !important;
}

#sb_instagram .sbi_link {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    text-decoration: none !important;
    position: relative !important;
}

#sb_instagram .sbi_link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    z-index: 1;
}

#sb_instagram .sbi_item:hover .sbi_link::after {
    background: rgba(0, 0, 0, 0.05);
}

/* Hide plugin header and buttons */
#sb_instagram .sbi_header,
#sb_instagram .sbi_header_text,
#sb_instagram .sbi_header_img,
#sb_instagram .sbi_load_btn,
#sb_instagram .sbi_follow_btn {
    display: none !important;
}

/* Instagram Feed - Feed Them Social Plugin Styling */
.fts-instagram-wrapper {
    padding: 0 !important;
}

.fts-instagram-wrapper .fts-instagram-post {
    border-radius: 0 !important;
    overflow: hidden !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    border: 1px solid #e0e0e0 !important;
    background: #ffffff !important;
    margin-bottom: 2rem !important;
}

.fts-instagram-wrapper .fts-instagram-post:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.fts-instagram-wrapper .fts-instagram-post img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    border-radius: 0 !important;
}

.instagram-fallback {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.instagram-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50%;
    color: white;
    box-shadow: 0 8px 30px rgba(188, 24, 136, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-icon-wrapper:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(188, 24, 136, 0.4);
}

.instagram-icon-wrapper svg {
    width: 48px;
    height: 48px;
}

.instagram-fallback-title {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.instagram-fallback-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.instagram-follow-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.3);
}

.instagram-follow-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(188, 24, 136, 0.4);
    color: white;
}

.instagram-follow-button:active {
    transform: translateY(0);
}

.instagram-follow-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.instagram-follow-button:hover svg {
    transform: translateX(3px);
}

/* Responsive Instagram Section */
@media (max-width: 968px) {
    .instagram-section {
        padding: 5rem 0;
    }
    
    .instagram-profile-embed-wrapper {
        max-width: 100%;
    }
    
    .instagram-profile-embed {
        border-radius: 8px;
    }
    
    .instagram-feed-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    #sb_instagram .sbi_items_wrapper {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 1.5rem !important;
    }
    
    .instagram-fallback {
        padding: 3rem 1.5rem;
    }
    
    .instagram-icon-wrapper {
        width: 100px;
        height: 100px;
        margin-bottom: 1.5rem;
    }
    
    .instagram-icon-wrapper svg {
        width: 40px;
        height: 40px;
    }
    
    .instagram-fallback-title {
        font-size: 1.75rem;
    }
    
    .instagram-fallback-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .instagram-section {
        padding: 4rem 0;
    }
    
    .instagram-content-wrapper {
        margin-top: 2rem;
    }
    
    .instagram-profile-embed {
        border-radius: 8px;
        margin-bottom: 1.5rem;
    }
    
    .instagram-profile-embed iframe {
        height: 500px;
    }
    
    .instagram-feed-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    #sb_instagram .sbi_items_wrapper {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
        gap: 1.5rem !important;
    }
    
    .instagram-view-profile-btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
    
    .instagram-fallback {
        padding: 2.5rem 1rem;
    }
    
    .instagram-icon-wrapper {
        width: 90px;
        height: 90px;
        margin-bottom: 1.25rem;
    }
    
    .instagram-icon-wrapper svg {
        width: 36px;
        height: 36px;
    }
    
    .instagram-fallback-title {
        font-size: 1.5rem;
    }
    
    .instagram-fallback-text {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .instagram-follow-button {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .instagram-section {
        padding: 3.5rem 0;
    }
    
    .instagram-profile-embed {
        border-radius: 8px;
    }
    
    .instagram-profile-embed iframe {
        height: 450px;
    }
    
    .instagram-view-profile-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
    
    .instagram-feed-grid {
        gap: 1rem;
    }
    
    #sb_instagram .sbi_items_wrapper {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .instagram-fallback {
        padding: 2rem 1rem;
    }
    
    .instagram-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .instagram-icon-wrapper svg {
        width: 32px;
        height: 32px;
    }
    
    .instagram-fallback-title {
        font-size: 1.35rem;
    }
    
    .instagram-follow-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
}
