/* Project Pages Shared Styles */
/* Color Palette */
:root {
    --primary-green: #006127;
    --primary-green-dark: #004d1f;
    --primary-green-light: #98c7aa;
    --primary-green-button: #2d8659;
    --primary-green-button-hover: #3a9d6b;
    --text-green: rgba(46, 112, 66, 0.9);
    --white: #ffffff;
}

/* Dark theme overrides for project pages */
[data-theme="dark"] {
    --primary-green-light: #4ade80;
    --text-green: rgba(74, 222, 128, 0.9);
}

/* Hero Section */
.project-hero-section {
    background: var(--color-background);
    padding: 4rem 2rem;
    transition: background-color 0.3s ease;
}

.project-hero-title {
    margin-bottom: 1rem;
    color: var(--color-primary);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
}

.project-hero-subtitle {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--color-text-secondary);
    font-weight: 500;
    text-align: center;
}

/* CTA Buttons */
.project-cta-group {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
    margin-bottom: 3rem;
}

.btn-project-primary {
    background-color: var(--primary-green-button);
    color: var(--white);
    border-radius: 30px;
    padding: 0.875rem 2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 6px rgba(45, 134, 89, 0.3);
}

.btn-project-primary:hover {
    background-color: var(--primary-green-button-hover) !important;
    color: #e8f5ee !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(45, 134, 89, 0.4) !important;
}

.btn-project-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(45, 134, 89, 0.3) !important;
}

.btn-project-secondary {
    background-color: transparent;
    color: var(--primary-green-light);
    border: 2px solid var(--primary-green-light);
    border-radius: 30px;
    padding: 0.875rem 2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-project-secondary:hover {
    background-color: var(--primary-green-light) !important;
    color: var(--primary-green-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(152, 199, 170, 0.3);
}

[data-theme="dark"] .btn-project-secondary {
    color: #4ade80;
    border-color: #4ade80;
}

[data-theme="dark"] .btn-project-secondary:hover {
    background-color: #4ade80 !important;
    color: #000 !important;
}

.btn-project-secondary:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(152, 199, 170, 0.2);
}

/* Card Hover Effects */
.project-card-hover {
    transition: all 0.3s ease;
}

.project-card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15) !important;
}

/* Animation Classes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.project-animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.project-animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.project-animate-delay-100 {
    animation-delay: 0.1s;
}

.project-animate-delay-200 {
    animation-delay: 0.2s;
}

.project-animate-delay-300 {
    animation-delay: 0.3s;
}

.project-animate-delay-400 {
    animation-delay: 0.4s;
}

.project-animate-delay-500 {
    animation-delay: 0.5s;
}

/* Gallery Styling */
.gallery-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.5rem;
}

.gallery-thumbnail-small {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid var(--color-border);
}

.gallery-thumbnail-small:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* Pricing Page Specific Styles */
.pricing-card {
    background: var(--color-card-bg) !important;
    transition: background-color 0.3s ease;
}

.pricing-card h3,
.pricing-card .modern-h3 {
    color: var(--color-text-primary) !important;
}

.pricing-card .modern-p {
    color: var(--color-text-secondary) !important;
}

.pricing-card span[style*="color: #111827"],
.pricing-card span[style*="color:#111827"] {
    color: var(--color-text-primary) !important;
}

.pricing-card span[style*="color: #6b7280"],
.pricing-card span[style*="color:#6b7280"] {
    color: var(--color-text-secondary) !important;
}

.pricing-card span[style*="color: #374151"],
.pricing-card span[style*="color:#374151"] {
    color: var(--color-text-secondary) !important;
}

/* Pricing Tabs */
.pricing-tabs-mobile {
    background: var(--color-surface);
    padding: 0.5rem;
    border-radius: 12px;
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.pricing-tab {
    flex: 1;
    padding: 0.875rem 1rem;
    background: var(--color-card-bg);
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-text-primary);
}

.pricing-tab:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.pricing-tab.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

/* Additional Feature Boxes */
[style*="background: white"][style*="padding: 1.5rem"] {
    background: var(--color-card-bg) !important;
    border: 1px solid var(--color-border) !important;
}

[data-theme="dark"] [style*="background: white"][style*="padding: 1.5rem"] {
    box-shadow: 0 1px 3px rgba(0,0,0,0.3) !important;
}

/* FAQ Section */
.faq-section {
    background: var(--color-surface) !important;
}

.faq-card {
    background: var(--color-card-bg) !important;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1) !important;
}

[data-theme="dark"] .faq-card {
    box-shadow: 0 1px 3px rgba(0,0,0,0.3) !important;
}

[data-theme="dark"] .faq-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.5) !important;
}

/* Theme Toggle Button */
.theme-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--color-text-primary);
}

.theme-toggle-btn:hover {
    transform: scale(1.1);
    background: var(--color-surface);
    border-radius: 8px;
}

.theme-toggle-btn svg {
    transition: all 0.3s ease;
}

