/**
 * Modern App Feature Product Template Styles
 * Matches the design system of equipment-inspections-modern.css
 */

/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
    --primary: #FFF400;
    --primary-dark: #E6DB00;
    --accent-dark: #CCC400;
    --dark: #111111;
    --dark-light: #1A1F3A;
    --text: #2D3748;
    --text-light: #718096;
    --border: #E2E8F0;
    --white: #FFFFFF;
}

.app-feature-product-modern,
.equipment-inspections-modern.app-feature-product-modern {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
}

/* Override any conflicting Divi/WooCommerce styles */
.app-feature-product-modern * {
    box-sizing: border-box;
}

.app-feature-product-modern article {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Product Hero Section */
.app-feature-product-modern .hero-section,
.app-feature-product-modern .product-hero-section {
    padding: 100px 40px 80px !important;
    background: linear-gradient(135deg, #111111 0%, #1A1F3A 100%) !important;
    position: relative;
    overflow: hidden;
    margin: 0 !important;
    max-width: 100% !important;
}

.app-feature-product-modern .hero-section::before,
.app-feature-product-modern .product-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 244, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.app-feature-product-modern .product-hero-container,
.app-feature-product-modern .hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.product-hero-content,
.hero-content {
    /* Content styles */
}

.product-hero-title,
.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.product-hero-lead,
.hero-lead {
    font-size: 1.3rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 32px;
    line-height: 1.5;
}

.hero-lead > p {
    font-size: inherit;
    color: inherit;
    line-height: inherit;
    margin: 0 0 16px;
}

.hero-lead > p:last-child {
    margin-bottom: 0;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0;
}

/* Breadcrumbs */
.product-breadcrumbs {
    margin-bottom: 24px;
}

.breadcrumb-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-wrapper a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-wrapper a:hover {
    color: var(--primary);
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.4);
}

/* Category Badges */
.product-category-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.category-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 244, 0, 0.15);
    color: var(--primary);
    border: 1px solid rgba(255, 244, 0, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.category-badge:hover {
    background: rgba(255, 244, 0, 0.25);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Hero Title */
.product-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.product-hero-lead {
    font-size: 1.3rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 32px;
    line-height: 1.5;
}

/* Meta Pills */
.product-meta-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.meta-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.meta-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.meta-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.meta-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.meta-value {
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 500;
}

/* Hero CTA */
.product-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-button-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--primary);
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 244, 0, 0.3);
    width: fit-content;
}

.cta-button-primary:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 244, 0, 0.4);
}

.cta-button-primary .btn-icon {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.cta-button-primary:hover .btn-icon {
    transform: translateX(4px);
}

.cta-helper-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* Hero Image */
.product-hero-image,
.hero-image {
    position: relative;
}

.product-image-wrapper,
.hero-image img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.product-image-wrapper img,
.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-image-placeholder {
    aspect-ratio: 4/3;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(255, 255, 255, 0.2);
}

.placeholder-icon {
    font-size: 5rem;
    opacity: 0.3;
}

/* Content Wrapper */
.product-content-wrapper {
    background: #FAFBFC;
}

/* ========================================
   PAGE BUILDER SECTIONS (INHERITED FROM CATEGORY)
   ======================================== */

/* Overview Section */
.app-feature-product-modern .app-overview-section {
    padding: 100px 40px !important;
    background: var(--white) !important;
}

.app-feature-product-modern .content-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.app-feature-product-modern .section-heading {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 2.75rem !important;
    font-weight: 700 !important;
    color: var(--dark) !important;
    margin: 0 0 30px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.01em !important;
}

.app-feature-product-modern .section-text {
    font-size: 1.2rem !important;
    color: var(--text-light) !important;
    line-height: 1.8 !important;
    margin: 0 !important;
}

/* Feature Sections (Equipment Grid Section) */
.app-feature-product-modern .feature-section {
    padding: 120px 40px !important;
    background: var(--white) !important;
}

.app-feature-product-modern .feature-section.dark-bg {
    background: var(--dark) !important;
}

.app-feature-product-modern .feature-section.reverse .feature-grid {
    direction: rtl;
}

.app-feature-product-modern .feature-section.reverse .feature-grid > * {
    direction: ltr;
}

.app-feature-product-modern .feature-grid {
    max-width: 1400px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 100px !important;
    align-items: center !important;
}

.app-feature-product-modern .feature-title {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    margin: 0 0 30px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.01em !important;
    color: var(--dark) !important;
}

.app-feature-product-modern .dark-bg .feature-title {
    color: var(--white) !important;
}

.app-feature-product-modern .feature-description {
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    margin: 0 0 24px !important;
    color: var(--text) !important;
}

.app-feature-product-modern .dark-bg .feature-description {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Equipment Grid Visual */
.app-feature-product-modern .equipment-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
}

.app-feature-product-modern .equipment-item {
    padding: 24px !important;
    border-radius: 12px !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

/* Dark-background sections keep the original white-on-transparent styling. */
.app-feature-product-modern .dark-bg .equipment-item {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--white) !important;
}

.app-feature-product-modern .dark-bg .equipment-item:hover {
    background: rgba(255, 193, 7, 0.1) !important;
    border-color: var(--primary) !important;
    transform: translateY(-4px) !important;
}

/* Light-background sections (feature_two_column with feature_background=white). */
.app-feature-product-modern .feature-section:not(.dark-bg) .equipment-item {
    background: #F7FAFC !important;
    border: 1px solid #E2E8F0 !important;
    color: var(--text, #1a202c) !important;
}

.app-feature-product-modern .feature-section:not(.dark-bg) .equipment-item:hover {
    background: #FFFBEA !important;
    border-color: var(--primary) !important;
    color: var(--text, #1a202c) !important;
    transform: translateY(-4px) !important;
}

/* Phone Mockup */
.app-feature-product-modern .phone-mockup {
    width: 100% !important;
    height: auto !important;
    border-radius: 16px !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

/* Dashboard Image */
.app-feature-product-modern .dashboard-image {
    width: 100% !important;
    height: auto !important;
    border-radius: 8px !important;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15) !important;
}

/* Workflow List */
.app-feature-product-modern .workflow-list {
    margin-top: 40px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

.app-feature-product-modern .workflow-item {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    padding: 20px !important;
    background: #F7FAFC !important;
    border-radius: 12px !important;
    border-left: 4px solid var(--primary) !important;
    transition: all 0.3s ease !important;
}

.app-feature-product-modern .workflow-item:hover {
    background: #FFF9E6 !important;
    transform: translateX(8px) !important;
}

.app-feature-product-modern .workflow-number {
    flex-shrink: 0 !important;
    width: 48px !important;
    height: 48px !important;
    background: var(--primary) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 700 !important;
    font-size: 1.2rem !important;
    color: var(--dark) !important;
}

.app-feature-product-modern .workflow-text {
    font-size: 1.1rem !important;
    color: var(--text) !important;
    font-weight: 500 !important;
}

/* CTA Section */
.app-feature-product-modern .cta-section {
    padding: 100px 40px !important;
    background: linear-gradient(135deg, #111111 0%, #1A1F3A 100%) !important;
    text-align: center !important;
}

.app-feature-product-modern .cta-container {
    max-width: 800px !important;
    margin: 0 auto !important;
}

.app-feature-product-modern .cta-title {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 2.75rem !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    margin: 0 0 24px !important;
    line-height: 1.2 !important;
}

.app-feature-product-modern .cta-description {
    font-size: 1.3rem !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin: 0 0 40px !important;
    line-height: 1.6 !important;
}

.app-feature-product-modern .cta-button-large {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 20px 48px !important;
    background: var(--primary) !important;
    color: var(--dark) !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 30px rgba(255, 244, 0, 0.3) !important;
}

.app-feature-product-modern .cta-button-large:hover {
    background: var(--white) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(255, 244, 0, 0.4) !important;
}

.app-feature-product-modern .cta-button-large .btn-icon {
    transition: transform 0.3s ease !important;
    font-size: 1.3rem !important;
}

.app-feature-product-modern .cta-button-large:hover .btn-icon {
    transform: translateX(4px) !important;
}

/* Product Sections */
.product-section {
    padding: 80px 40px;
}

.product-section:nth-child(even) {
    background: var(--white);
}

.app-feature-product-modern .content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.content-container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.section-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 40px;
    letter-spacing: -0.02em;
}

.section-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
}

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

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

.section-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

/* Checklist */
.checklist-content ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.checklist-content li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.checklist-content li:hover {
    border-color: var(--primary);
    transform: translateX(4px);
}

.checklist-content li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}


/* Gallery Grid */
.gallery-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.gallery-item {
    text-decoration: none;
    color: var(--text);
    display: block;
}

.gallery-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #F7FAFC;
}

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

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

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-image-wrapper img {
    transform: scale(1.05);
}

.gallery-caption {
    margin: 12px 0 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Documents Grid */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.document-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
}

.document-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.document-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #FFF9E6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doc-emoji {
    font-size: 2rem;
}

.document-content {
    flex: 1;
}

.document-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 4px;
}

.document-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.document-action {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #F7FAFC;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.action-icon {
    font-size: 1.2rem;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.document-card:hover .document-action {
    background: var(--primary);
}

.document-card:hover .action-icon {
    color: var(--dark);
    transform: translateY(2px);
}

/* CTA Section */
.product-cta-section {
    background: linear-gradient(135deg, #111111 0%, #1A1F3A 100%);
    position: relative;
}

.product-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 244, 0, 0.08) 0%, transparent 70%);
}

.cta-card {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 16px;
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: var(--primary);
    color: var(--dark);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(255, 244, 0, 0.3);
}

.cta-button-large:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(255, 244, 0, 0.4);
}

.cta-button-large .btn-icon {
    transition: transform 0.3s ease;
    font-size: 1.3rem;
}

.cta-button-large:hover .btn-icon {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .app-feature-product-modern .product-hero-container,
    .app-feature-product-modern .hero-container {
        gap: 60px;
    }

    .app-feature-product-modern .product-hero-title,
    .app-feature-product-modern .hero-title {
        font-size: 3rem;
    }

    .app-feature-product-modern .feature-grid {
        grid-template-columns: 1fr !important;
        gap: 60px !important;
    }

    .app-feature-product-modern .feature-section.reverse .feature-grid {
        direction: ltr !important;
    }

    .app-feature-product-modern .phone-mockup {
        margin: 0 auto !important;
    }
}

@media (max-width: 900px) {
    .app-feature-product-modern .product-hero-container,
    .app-feature-product-modern .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .app-feature-product-modern .product-hero-title,
    .app-feature-product-modern .hero-title {
        font-size: 2.5rem;
    }

    .app-feature-product-modern .product-hero-lead,
    .app-feature-product-modern .hero-lead {
        font-size: 1.1rem;
    }

    .app-feature-product-modern .section-heading {
        font-size: 2rem !important;
    }

    .gallery-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .app-feature-product-modern .product-hero-section,
    .app-feature-product-modern .hero-section {
        padding: 80px 20px 60px !important;
    }

    .app-feature-product-modern .product-hero-title,
    .app-feature-product-modern .hero-title {
        font-size: 2rem !important;
    }

    .app-feature-product-modern .product-hero-lead,
    .app-feature-product-modern .hero-lead {
        font-size: 1rem !important;
    }

    .app-feature-product-modern .product-meta-pills {
        flex-direction: column;
    }

    .app-feature-product-modern .meta-pill {
        width: 100%;
    }

    .product-section {
        padding: 60px 20px;
    }

    .app-feature-product-modern .section-heading {
        font-size: 1.75rem !important;
    }

    .section-content {
        font-size: 1rem;
    }

    .gallery-grid-modern,
    .documents-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 40px 20px;
    }

    .app-feature-product-modern .cta-title {
        font-size: 1.75rem !important;
    }

    .app-feature-product-modern .cta-description {
        font-size: 1rem !important;
    }

    .app-feature-product-modern .cta-button-large {
        padding: 16px 32px !important;
        font-size: 1rem !important;
    }

    .breadcrumb-wrapper {
        flex-wrap: wrap;
    }

    .app-feature-product-modern .equipment-grid {
        grid-template-columns: 1fr !important;
    }

    .app-feature-product-modern .feature-section,
    .app-feature-product-modern .app-overview-section,
    .app-feature-product-modern .cta-section {
        padding: 80px 24px !important;
    }

    .app-feature-product-modern .feature-title {
        font-size: 2rem !important;
    }
}



/* Contact Form Section */
.app-feature-product-modern .product-contact-section {
    background: #F7FAFC !important;
    padding: 60px 40px !important;
    border-top: 1px solid var(--border) !important;
}

.app-feature-product-modern .contact-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.app-feature-product-modern .contact-buttons {
    display: flex !important;
    gap: 20px !important;
    justify-content: center !important;
    margin-bottom: 40px !important;
    flex-wrap: wrap !important;
}

.app-feature-product-modern .fastfield-button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 16px 32px !important;
    background: var(--dark) !important;
    color: var(--white) !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: 2px solid var(--dark) !important;
}

.app-feature-product-modern .fastfield-button:hover {
    background: var(--white) !important;
    color: var(--dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

.app-feature-product-modern .fastfield-button .btn-icon {
    font-size: 1.3rem !important;
}

.product-contact-section .content-container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

/* Style the contact form from odiz-request-information plugin */
#odiz-request-info-container {
    background: #F7FAFC;
    padding: 40px;
    border-radius: 16px;
    border: 2px solid var(--border);
}

.odiz-request-info-intro {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.7;
}

.odiz-request-info-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.odiz-request-info-buttons .button {
    padding: 16px 32px;
    background: var(--primary);
    color: var(--dark);
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.odiz-request-info-buttons .button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 244, 0, 0.3);
}

#odiz-request-info-form {
    margin-top: 24px;
}

/* Gravity Forms Styling within this section */
.product-contact-section .gform_wrapper {
    max-width: 100%;
}

.product-contact-section .gform_wrapper input[type="text"],
.product-contact-section .gform_wrapper input[type="email"],
.product-contact-section .gform_wrapper input[type="tel"],
.product-contact-section .gform_wrapper textarea,
.product-contact-section .gform_wrapper select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    background: var(--white);
}

.product-contact-section .gform_wrapper input:focus,
.product-contact-section .gform_wrapper textarea:focus,
.product-contact-section .gform_wrapper select:focus {
    border-color: var(--primary);
    outline: none;
}

.product-contact-section .gform_wrapper .gform_button,
.product-contact-section .gform_wrapper input[type="submit"] {
    padding: 16px 40px;
    background: var(--primary);
    color: var(--dark);
    font-weight: 700;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.product-contact-section .gform_wrapper .gform_button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 244, 0, 0.3);
}
