/*
 * WordPress Theme CSS - Common Styles
 * 
 * This file contains all common styles for the 2donow-custom WordPress theme.
 * Originally migrated from static HTML site's common.css file.
 * 
 * The styles have been adapted for WordPress environment with:
 * - WordPress-specific class compatibility
 * - Proper asset path handling
 * - Theme integration optimizations
 * 
 * Language-specific content is handled in separate CSS files:
 * - lang-en.css: content: 'Popular';
 * - lang-ru.css: content: 'Популярный';  
 * - lang-ua.css: content: 'Популярний';
 * 
 * WordPress Theme: 2donow-custom
 * Version: 1.0.0
 */

/* CSS Variables */
:root {
    --primary-color: #8b5cf6;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0f;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 20px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.logo-link:hover {
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: white;
}

.email {
    color: #9ca3af;
    font-size: 14px;
    text-decoration: none !important;
}

.email:hover {
    text-decoration: none !important;
    color: #8b5cf6;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: #8b5cf6;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #a855f7);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle:hover .hamburger-line {
    background: #8b5cf6;
}

.mobile-menu-toggle.active .hamburger-line {
    background: #8b5cf6;
}

/* Touch interactions */
.touch-active {
    transform: scale(0.98) !important;
    opacity: 0.8 !important;
    transition: all 0.1s ease !important;
}

.service-item.touch-active {
    background: rgba(139, 92, 246, 0.15) !important;
    border-color: rgba(139, 92, 246, 0.4) !important;
}

.btn-primary.touch-active,
.btn-outline.touch-active,
.cta-button.touch-active {
    transform: scale(0.95) translateY(1px) !important;
}

/* Mobile menu open state */
body.mobile-menu-open {
    overflow: hidden;
}

/* Lazy loading images */
img.lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}

/* Image loading states */
.portfolio-image img {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.portfolio-image img:not(.loaded) {
    opacity: 0.7;
}

.portfolio-image img.loaded {
    opacity: 1;
}

/* Navigation Menu Styles */
.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #8b5cf6;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #a855f7);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.current {
    color: #8b5cf6;
}

.nav-menu a.current::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #8b5cf6, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: #9ca3af;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}



.btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    border: 2px solid transparent;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    box-sizing: border-box;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
}

.btn-primary,
.cta-button {
    text-decoration: none;
    display: inline-block;
}

.btn-outline {
    background: transparent;
    color: #8b5cf6;
    border: 2px solid #8b5cf6;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    box-sizing: border-box;
}

.btn-outline:hover {
    background: #8b5cf6;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    text-decoration: none;
    display: inline-block;
}

.social-links,
.lang-links {
    display: flex;
    gap: 15px;
}



.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: 600;
}

.social-link:hover {
    border-color: #8b5cf6;
    color: #8b5cf6;
    transform: translateY(-2px);
}

.lang-links a {
    color: #9ca3af;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.lang-links a:hover {
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
}

.lang-links a.active {
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.2);
    font-weight: 600;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 300px;
    transition: transform 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.hero-card p {
    color: #9ca3af;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #0a0a0f;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.2rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    display: grid;
    grid-template-columns: 80px 1fr 60px;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    margin-bottom: 10px;
}

.service-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.service-item:hover .service-number {
    color: #a855f7;
    transform: scale(1.1);
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
}

.service-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.service-link:hover {
    text-decoration: none;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.service-item:hover .service-title {
    color: #8b5cf6;
}

.service-description {
    color: #9ca3af;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.service-item:hover .service-description {
    color: #b794f6;
}

.service-arrow {
    font-size: 1.5rem;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.service-item:hover .service-arrow {
    transform: translateX(10px);
    color: #a855f7;
}

.service-item:hover {
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
}

.service-item.highlighted {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.service-item.highlighted:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.25);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #0a0a0f;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.2rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    display: grid;
    grid-template-columns: 80px 1fr 60px;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    margin-bottom: 10px;
}

.service-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.service-item:hover .service-number {
    color: #a855f7;
    transform: scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.service-title h3 {
    text-decoration: none !important;
    color: inherit;
    transition: color 0.3s ease;
}

.service-item:hover .service-title h3 {
    color: #8b5cf6;
    text-decoration: none !important;
}

.service-link {
    color: inherit;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: block;
}

.service-link,
.service-link *,
.service-link *:hover {
    text-decoration: none !important;
}

.service-link:hover {
    text-decoration: none !important;
}

.service-item:hover .service-link {
    color: #8b5cf6;
}

.service-item:hover {
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
}

.service-item.highlighted {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.service-item.highlighted:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.25);
}

.service-description {
    color: #9ca3af;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.service-item:hover .service-description {
    color: #b794f6;
}

.service-arrow {
    font-size: 1.5rem;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.service-item:hover .service-arrow {
    transform: translateX(10px);
    color: #a855f7;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #0a0a0f;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: rgba(20, 20, 30, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    color: #ffffff;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border: 2px solid #8b5cf6;
    background: rgba(139, 92, 246, 0.15);
    transform: scale(1.05);
}

/* Language-specific content rules are kept in individual CSS files:
   - en/styles.css: content: 'Popular';
   - ru/styles.css: content: 'Популярный';
   - ua/styles.css: content: 'Популярний';
*/
.pricing-card.featured::before {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 30px;
}

.features {
    list-style: none;
    margin-bottom: 40px;
}

.features li {
    padding: 10px 0;
    color: #9ca3af;
    position: relative;
    padding-left: 25px;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: bold;
}

/* Advantages Section */
.advantages {
    padding: 100px 0;
    background: #0a0a0f;
}

.advantages-content h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #ffffff;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.advantage-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.advantage-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.advantage-item p {
    color: #9ca3af;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.contact-info p {
    font-size: 1.2rem;
    color: #9ca3af;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    color: #9ca3af;
    line-height: 1.8;
}

.contact-item strong {
    color: #ffffff;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.messenger-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.messenger-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.messenger-link:hover {
    transform: translateY(-3px);
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.1);
}

.messenger-icon {
    font-size: 1.5rem;
}

.social-links-section {
    margin-top: 30px;
}

.social-links-section h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact .social-links,
.lang-links {
    justify-content: flex-start;
    gap: 15px;
}

.freelance-profiles {
    margin-top: 40px;
}

.profile-item {
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-item h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.profile-item h3 a {
    color: #8b5cf6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.profile-item h3 a:hover {
    color: #a855f7;
    text-decoration: underline;
}

.banner-container {
    text-align: center;
}

.freelance-banner {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.freelance-banner:hover {
    transform: scale(1.02);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9ca3af;
}

/* Footer */
.footer {
    background: #0a0a0f;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-left p {
    color: #9ca3af;
    margin: 10px 0;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #8b5cf6;
}

.footer-social h4,
.footer-btn h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Page Styles */
.page-hero {
    padding: 140px 0 80px;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-description {
    font-size: 1.2rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Portfolio Styles */
.portfolio-section {
    padding: 80px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
}

.portfolio-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
    padding: 20px 15px 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-text {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.portfolio-content {
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.portfolio-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.portfolio-content p {
    color: #9ca3af;
    line-height: 1.6;
}

/* Help Page Styles */
.help-section {
    padding: 80px 0;
}

.help-content {
    max-width: 800px;
    margin: 0 auto;
}

.help-block {
    margin-bottom: 60px;
}

.help-block h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 30px;
}

.help-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.help-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-content p {
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
}

.step-content a {
    color: #8b5cf6;
    text-decoration: none;
}

.step-content a:hover {
    text-decoration: underline;
}

.help-note {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    padding: 20px;
}

.help-note p {
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
}

.terminology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.term-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
}

.term-item h3 {
    color: #8b5cf6;
    margin-bottom: 10px;
}

.term-item p {
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
}

.help-bonus {
    text-align: center;
    color: #8b5cf6;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.link-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    position: relative;
}

.link-item h4 {
    color: #ffffff;
    margin-bottom: 10px;
}

.external-link {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 500;
}

.external-link:hover {
    text-decoration: underline;
}

.link-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Design Page Styles */
.design-benefits {
    padding: 80px 0;
    background: #0a0a0f;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: #ffffff;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #9ca3af;
    line-height: 1.6;
}

.template-categories {
    padding: 80px 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.category-image {
    height: 150px;
}

.category-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon {
    font-size: 3rem;
}

.category-content {
    padding: 20px;
}

.category-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

.category-content p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 15px;
}

.category-link {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 500;
}

.category-link:hover {
    text-decoration: underline;
}

.selection-process {
    padding: 80px 0;
    background: #0a0a0f;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.process-step {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.process-step h3 {
    color: #ffffff;
    margin-bottom: 15px;
}

.process-step p {
    color: #9ca3af;
    line-height: 1.6;
}

.process-cta {
    text-align: center;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.process-cta .btn-primary,
.process-cta .btn-outline {
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    min-height: 52px;
    width: 250px;
    max-width: 100%;
}

/* Contacts Page Styles */
.contacts-section {
    padding: 80px 0;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
}

.contact-card h2 {
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #8b5cf6;
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-details p,
.contact-details a {
    color: #9ca3af;
    margin: 2px 0;
    text-decoration: none;
}

.contact-details a:hover {
    color: #8b5cf6;
}

.payment-section {
    margin-bottom: 25px;
}

.payment-section h3 {
    color: #8b5cf6;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.payment-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.payment-item strong {
    color: #ffffff;
}

.payment-item span,
.payment-item a {
    color: #9ca3af;
    font-family: monospace;
    text-decoration: none;
}

.payment-item a:hover {
    color: #8b5cf6;
}

.payment-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 8px;
}

.payment-note p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
}

.payment-note a {
    color: #8b5cf6;
    text-decoration: none;
}

.payment-note a:hover {
    text-decoration: underline;
}

.contact-form-section {
    margin-bottom: 60px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.social-section {
    text-align: center;
}

.social-section h2 {
    color: #ffffff;
    margin-bottom: 30px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.social-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.social-card:hover {
    transform: translateY(-5px);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.social-card .social-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: 700;
    color: white;
}

.social-card h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

.social-card p {
    color: #9ca3af;
    margin: 0;
}

/* Phone Links */
.phone-link {
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 2px;
    display: inline;
}

.phone-link:hover {
    color: #8b5cf6;
    text-decoration-style: solid;
}

.phone-link:last-child::after {
    content: "";
}

/* Calculator Styles */
.calculator-steps {
    padding: 80px 0;
    background: #0a0a0f;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
}

.step-card h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.step-card p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.step-links a {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.step-links a:hover {
    color: #a855f7;
    text-decoration: underline;
}

.calculator-section {
    padding: 80px 0;
    background: transparent !important;
}

.calculator-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.calculator-form h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.calculator-options {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.option-group {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 25px;
}

.option-group h3 {
    color: #8b5cf6;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.option-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 10px 0;
}

.option-item:last-child {
    margin-bottom: 0;
}

.option-item label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    flex: 1;
}

.option-item input[type="checkbox"],
.option-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkmark:hover {
    border-color: rgba(139, 92, 246, 0.6);
    transform: scale(1.05);
}

.option-item input[type="checkbox"]:checked+.checkmark {
    background: #8b5cf6;
    border-color: #8b5cf6;
}

.option-item input[type="checkbox"]:checked+.checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.option-item input[type="radio"]+.checkmark {
    border-radius: 50%;
}

.option-item input[type="radio"]:checked+.checkmark {
    background: #8b5cf6;
    border-color: #8b5cf6;
}

.option-item input[type="radio"]:checked+.checkmark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.price {
    color: #8b5cf6;
    font-weight: 600;
    font-size: 0.9rem;
}

.calculator-result {
    position: sticky;
    top: 120px;
}

.result-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

.result-card h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.total-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 30px;
}

#total-price {
    font-size: 3rem;
    font-weight: 700;
    color: #8b5cf6;
}

.currency {
    color: #9ca3af;
    font-size: 1.2rem;
}

.order-button {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    width: 100%;
}

.order-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {

    /* Increase top padding to account for fixed header on mobile */
    .hero {
        padding-top: 100px;
    }

    .page-hero {
        padding-top: 100px;
    }

    /* Ensure all main content sections have enough top padding */
    main,
    .main-content,
    article {
        padding-top: 90px;
    }

    /* If page doesn't have hero section, add padding to first section */
    body>section:first-of-type,
    main>section:first-of-type {
        padding-top: 100px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    /* Mobile Navigation */
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: left;
    }

    .nav a:last-child {
        border-bottom: none;
    }

    .nav a::after {
        display: none;
    }

    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Hide CTA button on mobile to save space */
    .cta-button {
        display: none;
    }

    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .calculator-result {
        position: static;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 20px;
    }

    .messenger-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Wor
dPress-Specific Styles */

/* WordPress Admin Bar Compatibility */
.admin-bar .header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .header {
        top: 46px;
    }
}

/* WordPress Content Classes */
.wp-block-group {
    margin: 0;
}

.wp-block-group__inner-container {
    max-width: none;
}

/* WordPress Image Classes */
.wp-post-image,
.attachment-post-thumbnail {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* WordPress Navigation Menu Support */
.wp-nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.wp-nav-menu li {
    margin: 0;
}

.wp-nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.wp-nav-menu a:hover {
    color: #8b5cf6;
}

.wp-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #a855f7);
    transition: width 0.3s ease;
}

.wp-nav-menu a:hover::after {
    width: 100%;
}

/* Mobile WordPress Menu */
@media (max-width: 768px) {
    .wp-nav-menu {
        flex-direction: column;
        gap: 0;
    }

    .wp-nav-menu li {
        width: 100%;
    }

    .wp-nav-menu a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .wp-nav-menu a::after {
        display: none;
    }
}

/* WordPress Form Compatibility */
.wpcf7-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: #8b5cf6;
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
    color: #9ca3af;
}

.wpcf7-form input[type="submit"] {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.wpcf7-form input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
}

/* WordPress Widget Compatibility */
.widget {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
}

.widget-title {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

/* WordPress Post Content */
.entry-content {
    color: #9ca3af;
    line-height: 1.7;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    color: #ffffff;
    margin-bottom: 15px;
    margin-top: 30px;
}

.entry-content h1:first-child,
.entry-content h2:first-child,
.entry-content h3:first-child {
    margin-top: 0;
}

.entry-content a {
    color: #8b5cf6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-content a:hover {
    color: #a855f7;
    text-decoration: underline;
}

/* WordPress Accessibility */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Skip Link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 999999;
    background: #8b5cf6;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 0 0 5px 5px;
}

.skip-link:focus {
    left: 0;
}

/ * Language Switcher Styles */ .language-switcher {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 20px 0;
}

.language-switcher .lang-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.language-switcher .lang-link:hover {
    background-color: #f0f0f0;
    border-color: #ccc;
}

.language-switcher .lang-link.current-lang {
    background-color: #007cba;
    color: white;
    border-color: #007cba;
}

.language-switcher .lang-flag {
    font-size: 16px;
}

.language-switcher .lang-name {
    font-size: 14px;
    font-weight: 500;
}

/* Language Debug Styles (temporary) */
.language-debug {
    font-family: monospace;
    font-size: 12px;
    line-height: 1.5;
}

.language-debug h3 {
    margin-top: 0;
    color: #333;
}

.language-debug p {
    margin: 5px 0;
}

/* Language URLs Test */
.language-urls-test ul {
    list-style: none;
    padding: 0;
}

.language-urls-test li {
    margin: 5px 0;
}

.language-urls-test a {
    color: #007cba;
    text-decoration: none;
}

.language-urls-test a:hover {
    text-decoration: underline;
}

/* Enha
nced Hero Section Animations */
.hero-card {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.hero-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.3);
}

/* Gradient text animation */
.gradient-text {
    background-size: 200% auto;
    background-position: 0% center;
    transition: background-position 0.8s ease;
    animation: gradient-shift 3s ease-in-out infinite alternate;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 100% center;
    }
}

.gradient-text:hover {
    background-position: 100% center;
    animation-play-state: paused;
}

/* Hero section entrance animations */
.hero-title {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero-description {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.hero-buttons {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Social links hover effects */
.social-link {
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

/* Button pulse animation */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

/* Card icon animation */
.card-icon {
    display: inline-block;
    transition: transform 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-card:hover .card-icon {
    transform: scale(1.2) rotate(10deg);
    animation-play-state: paused;
}

/* Services section entrance animation */
.services-list {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1s;
}

/* Staggered service item animations */
.service-item {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.6s ease forwards;
}

.service-item:nth-child(1) {
    animation-delay: 1.2s;
}

.service-item:nth-child(2) {
    animation-delay: 1.4s;
}

.service-item:nth-child(3) {
    animation-delay: 1.6s;
}

.service-item:nth-child(4) {
    animation-delay: 1.8s;
}

.service-item:nth-child(5) {
    animation-delay: 2.0s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Service arrow animation */
.service-arrow {
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-item:hover .service-arrow {
    transform: translateX(10px);
    color: #8b5cf6;
}

/* Responsive animation adjustments */
@media (max-width: 768px) {
    .hero-card {
        transform: translateY(20px) scale(0.98);
    }

    .hero-card:hover {
        transform: translateY(-10px) scale(1.01);
    }

    /* Reduce animation delays on mobile */
    .hero-title {
        animation-delay: 0.1s;
    }

    .hero-description {
        animation-delay: 0.2s;
    }

    .hero-buttons {
        animation-delay: 0.3s;
    }

    .services-list {
        animation-delay: 0.5s;
    }

    .service-item:nth-child(1) {
        animation-delay: 0.6s;
    }

    .service-item:nth-child(2) {
        animation-delay: 0.7s;
    }

    .service-item:nth-child(3) {
        animation-delay: 0.8s;
    }

    .service-item:nth-child(4) {
        animation-delay: 0.9s;
    }

    .service-item:nth-child(5) {
        animation-delay: 1.0s;
    }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {

    .hero-card,
    .hero-title,
    .hero-description,
    .hero-buttons,
    .services-list,
    .service-item {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .gradient-text {
        animation: none;
    }

    .card-icon {
        animation: none;
    }
}

/* S
ervice animations */
.service-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.service-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-item.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Service ripple effect */
.service-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.1);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
    z-index: 1;
}

@keyframes ripple {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* Service item positioning for ripple */
.service-item {
    position: relative;
    overflow: hidden;
}

/* Enhanced service number animation */
.service-number {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.service-number.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Enhanced service content animation */
.service-content {
    opacity: 1;
    transform: none;
    transition: all 0.4s ease 0.1s;
}

.service-content.animate-in {
    opacity: 1;
    transform: none;
}

/* Enhanced service arrow animation */
.service-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease 0.2s;
}

.service-arrow.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Singl
e Service Page Styles */
.single-service .service-hero {
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    padding: 140px 0 100px;
}

.service-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-hero-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.service-hero-number {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.single-service .page-title {
    font-size: 3.5rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.single-service .page-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-content-section {
    padding: 80px 0;
}

.service-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.service-featured-image {
    margin-bottom: 40px;
    text-align: center;
}

.service-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-content {
    color: #9ca3af;
    line-height: 1.8;
    font-size: 1.1rem;
}

.service-content h2,
.service-content h3,
.service-content h4 {
    color: #ffffff;
    margin-top: 40px;
    margin-bottom: 20px;
}

.service-content h2 {
    font-size: 2rem;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-content p {
    margin-bottom: 20px;
}

.service-content ul,
.service-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.service-content li {
    margin-bottom: 10px;
    color: #9ca3af;
}

.service-content a {
    color: #8b5cf6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-content a:hover {
    color: #a855f7;
    text-decoration: underline;
}

.related-services {
    padding: 80px 0;
    background: #0a0a0f;
}

.related-services .section-title {
    text-align: center;
    margin-bottom: 60px;
}

/* 
Services Archive Page Styles */
.archive-services .services-archive-hero {
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}

.services-archive-content {
    padding: 80px 0;
}

.archive-services .service-excerpt {
    color: #b794f6;
    font-size: 0.95rem;
    margin-top: 10px;
    font-style: italic;
}

.no-services {
    text-align: center;
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.no-services h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 20px;
}

.no-services p {
    color: #9ca3af;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.services-cta {
    padding: 80px 0;
    background: #0a0a0f;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: #9ca3af;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
    padding: 20px 0;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: #8b5cf6;
    border-color: #8b5cf6;
    color: #ffffff;
    transform: translateY(-2px);
}

.pagination .page-numbers.dots {
    background: transparent;
    border: none;
    cursor: default;
}

.pagination .page-numbers.dots:hover {
    transform: none;
}

/* 
Portfolio Styles */

/* Portfolio Archive */
.archive-portfolio .page-hero {
    padding: 120px 0 80px;
    text-align: center;
}

.portfolio-filter {
    padding: 40px 0;
    background: rgba(139, 92, 246, 0.05);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-btn {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #8b5cf6;
    border-color: #8b5cf6;
    transform: translateY(-2px);
}

.portfolio-archive-content {
    padding: 80px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.portfolio-item {
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
}

.portfolio-item.filtered-out {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.portfolio-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.3);
}

.portfolio-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(168, 85, 247, 0.9));
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay-content {
    transform: translateY(0);
}

.portfolio-overlay .portfolio-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.portfolio-categories {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.portfolio-overlay .portfolio-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.5;
}

.portfolio-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.portfolio-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.portfolio-view-btn,
.portfolio-live-btn {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.portfolio-view-btn:hover,
.portfolio-live-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.portfolio-no-image {
    padding: 40px 30px;
    text-align: center;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.portfolio-placeholder {
    margin-bottom: 20px;
}

.portfolio-icon {
    font-size: 48px;
    opacity: 0.5;
}

.portfolio-no-image .portfolio-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.portfolio-no-image .portfolio-categories {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.portfolio-no-image .portfolio-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.portfolio-featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

/* Single Portfolio */
.single-portfolio .page-hero {
    padding: 120px 0 80px;
    text-align: center;
}

.portfolio-hero-content .portfolio-featured-badge {
    display: inline-block;
    position: static;
    margin-bottom: 20px;
}

.portfolio-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-meta-item {
    text-align: center;
}

.meta-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.portfolio-hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.external-icon {
    margin-left: 8px;
    font-size: 14px;
}

.portfolio-featured-image {
    padding: 60px 0;
}

.portfolio-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-main-image {
    width: 100%;
    height: auto;
    display: block;
}

.portfolio-content-section {
    padding: 80px 0;
}

.portfolio-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.portfolio-content {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
}

.portfolio-content h2,
.portfolio-content h3 {
    color: #ffffff;
    margin: 40px 0 20px;
}

.portfolio-content p {
    margin-bottom: 20px;
}

.portfolio-gallery {
    margin-top: 60px;
}

.gallery-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    color: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-navigation {
    padding: 60px 0;
    background: #0a0a0f;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-nav-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.portfolio-nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.portfolio-nav-link {
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    text-align: center;
}

.portfolio-nav-link:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

.portfolio-nav-link.prev-project,
.portfolio-nav-link.next-project {
    max-width: 200px;
}

.nav-direction {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.related-portfolio {
    padding: 80px 0;
}

.portfolio-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.1));
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.no-portfolio {
    text-align: center;
    padding: 80px 20px;
}

.no-portfolio h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.no-portfolio p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .filter-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .portfolio-meta {
        gap: 20px;
        padding: 20px;
    }

    .portfolio-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .portfolio-nav-links {
        flex-direction: column;
    }

    .portfolio-nav-link.prev-project,
    .portfolio-nav-link.next-project {
        max-width: none;
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .portfolio-overlay {
        padding: 20px;
    }

    .portfolio-overlay .portfolio-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-meta {
        flex-direction: column;
        gap: 15px;
    }

    .portfolio-actions {
        flex-direction: column;
        gap: 8px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/*
 Pricing Section Styles */
.pricing {
    padding: 100px 0;
    background: #0a0a0f;
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.pricing-card.popular {
    border: 2px solid #8b5cf6;
    background: rgba(139, 92, 246, 0.08);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.25);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.pricing-header {
    margin-bottom: 30px;
}

.plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8b5cf6;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #8b5cf6;
    line-height: 1;
}

.pricing-features {
    flex: 1;
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item:hover {
    background: rgba(139, 92, 246, 0.05);
    border-radius: 8px;
    padding-left: 8px;
    padding-right: 8px;
}

.feature-check {
    color: #8b5cf6;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.feature-text {
    color: #9ca3af;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-text {
    color: #b794f6;
}

.pricing-footer {
    margin-top: auto;
}

.btn-pricing {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
    text-decoration: none;
    color: white;
}

.pricing-card.popular .btn-pricing {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
}

.pricing-card.popular .btn-pricing:hover {
    box-shadow: 0 15px 35px rgba(168, 85, 247, 0.5);
}

/* Pricing Section Animation */
.pricing-card {
    animation: fadeInUp 0.6s ease-out;
}

.pricing-card:nth-child(1) {
    animation-delay: 0.1s;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.2s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Pricing */
@media (max-width: 768px) {
    .pricing-plans {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }

    .plan-price {
        flex-direction: column;
        gap: 0;
    }

    .amount {
        font-size: 2.5rem;
    }

    .currency {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .pricing {
        padding: 60px 0;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .plan-title {
        font-size: 1.3rem;
    }

    .amount {
        font-size: 2rem;
    }

    .btn-pricing {
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* S
ervice Page Specific Styles */
.services-section {
    padding: 80px 0;
    background: #0a0a0f;
}

.service-details {
    max-width: 800px;
    margin: 0 auto;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #9ca3af;
    line-height: 1.6;
}

.service-features li:before {
    content: "✓";
    color: #8b5cf6;
    font-weight: 700;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-top: 2px;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.1);
}

.service-card h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 0;
}

.cta-section {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 40px;
    margin-top: 40px;
    text-align: center;
}

.cta-section h3 {
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-section p {
    color: #9ca3af;
    margin-bottom: 10px;
}

.cta-section a {
    color: #8b5cf6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.services-section .cta-section .btn-primary {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25) !important;
}

.cta-section a:hover {
    color: #a855f7;
    text-decoration: underline;
}

/* Design Page Specific Styles */
.design-benefits {
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #9ca3af;
    line-height: 1.6;
}

.template-categories {
    padding: 80px 0;
    background: #0a0a0f;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.1);
}

.category-image {
    height: 200px;
    background: rgba(139, 92, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-placeholder {
    text-align: center;
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 10px;
    display: block;
}

.category-content {
    padding: 30px;
}

.category-content h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.category-content p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 20px;
}

.category-link {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.category-link:hover {
    color: #a855f7;
    text-decoration: underline;
}

.selection-process {
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-content h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-content p {
    color: #9ca3af;
    line-height: 1.6;
}

.process-cta {
    text-align: center;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.process-cta .btn-primary,
.process-cta .btn-outline {
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    min-height: 52px;
    width: 250px;
    max-width: 100%;
}

.btn-outline {
    background: transparent;
    color: #8b5cf6;
    border: 2px solid #8b5cf6;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.btn-outline:hover {
    background: #8b5cf6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
    text-decoration: none;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Large Desktop (1200px and up) - Default styles */
/* No media query needed - this is the default */

/* Desktop (1024px to 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 1024px;
        padding: 0 30px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero-content {
        gap: 60px;
    }

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

/* Tablet (768px to 1023px) */
@media (max-width: 1023px) {
    .container {
        max-width: 768px;
        padding: 0 25px;
    }

    /* Header adjustments */
    .header {
        padding: 15px 0;
    }

    .nav {
        gap: 25px;
    }

    .nav a {
        font-size: 14px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 13px;
    }

    /* Hero section */
    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-buttons {
        gap: 20px;
    }

    .btn-primary,
    .btn-outline {
        padding: 14px 28px;
        font-size: 15px;
        box-sizing: border-box;
    }

    /* Services section */
    .service-item {
        grid-template-columns: 60px 1fr 50px;
        padding: 25px 15px;
    }

    .service-title {
        font-size: 1.3rem;
    }

    /* Pricing section */
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .pricing-card {
        padding: 30px;
    }

    /* Contact section */
    .contact-content {
        gap: 50px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Mobile Landscape and Small Tablet (768px and below) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Header - Mobile Navigation */
    .header-content {
        position: relative;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        margin-top: 10px;
        padding: 20px;
        flex-direction: column;
        gap: 20px;
        z-index: 1001;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }

    .nav a:last-child {
        border-bottom: none;
    }

    .mobile-menu-toggle {
        display: flex !important;
    }

    .cta-button {
        display: none;
    }

    /* Hero section */
    .hero {
        padding: 100px 0 50px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* Services section */
    .services {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .service-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
        padding: 25px 20px;
    }

    .service-number {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .service-arrow {
        display: none;
    }

    /* Pricing section */
    .pricing {
        padding: 60px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .pricing-card {
        max-width: 400px;
        margin: 0 auto;
    }

    /* Contact section */
    .contact {
        padding: 60px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .messenger-links {
        flex-direction: column;
        gap: 15px;
    }

    .messenger-link {
        justify-content: center;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    /* Page-specific adjustments */
    .page-hero {
        padding: 100px 0 50px;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .calculator-result {
        position: static;
        margin-top: 30px;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .social-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    /* Service pages */
    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto 20px;
    }

    .process-cta {
        flex-direction: column;
        gap: 15px;
    }

    .process-cta .btn-primary,
    .process-cta .btn-outline {
        display: inline-flex;
        margin: 0;
        max-width: 200px;
        width: 100%;
        height: 48px;
        min-height: 48px;
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-item {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Mobile Portrait (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Header */
    .header {
        padding: 12px 0;
    }

    .logo {
        gap: 10px;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .email {
        font-size: 12px;
    }

    .mobile-menu-toggle {
        width: 25px;
        height: 25px;
    }

    .hamburger-line {
        height: 2px;
    }

    /* Hero section */
    .hero {
        padding: 80px 0 40px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn-primary,
    .btn-outline {
        padding: 12px 24px;
        font-size: 14px;
        min-width: 200px;
        box-sizing: border-box;
    }

    .hero-card {
        padding: 25px;
        max-width: 280px;
    }

    .card-icon {
        font-size: 2.5rem;
    }

    .hero-card h3 {
        font-size: 1.2rem;
    }

    /* Sections */
    .services,
    .pricing,
    .contact,
    .design-benefits,
    .template-categories,
    .selection-process {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    /* Services */
    .service-item {
        padding: 20px 15px;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-description {
        font-size: 0.9rem;
    }

    /* Pricing */
    .pricing-card {
        padding: 25px;
    }

    .price {
        font-size: 2rem;
    }

    .features li {
        font-size: 0.9rem;
        padding: 8px 0;
    }

    /* Contact */
    .contact-info h2 {
        font-size: 1.8rem;
    }

    .contact-info p {
        font-size: 1rem;
    }

    .contact-form {
        padding: 25px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 14px;
    }

    .messenger-link {
        padding: 12px 20px;
        font-size: 14px;
    }

    .messenger-icon {
        font-size: 1.2rem;
    }

    /* Footer */
    .footer {
        padding: 30px 0 15px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Service pages */
    .service-card,
    .benefit-card,
    .category-content,
    .process-step {
        padding: 20px;
    }

    .cta-section {
        padding: 25px 15px;
    }

    .category-image {
        height: 120px;
    }

    .category-icon {
        font-size: 2.5rem;
    }

    .benefit-icon {
        font-size: 2.2rem;
    }

    /* Contact page specific */
    .contact-card {
        padding: 20px;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .contact-icon {
        font-size: 1.2rem;
        width: auto;
    }

    .payment-item {
        padding: 8px;
    }

    .social-card {
        padding: 20px;
    }

    .social-card .social-icon {
        width: 50px;
        height: 50px;
    }
}

/* Extra Small Mobile (320px and below) */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .hero-card {
        padding: 20px;
        max-width: 260px;
    }

    .pricing-card,
    .contact-form,
    .contact-card {
        padding: 20px;
    }

    .btn-primary,
    .btn-outline {
        min-width: 180px;
        padding: 10px 20px;
        font-size: 13px;
        box-sizing: border-box;
    }

    .service-item {
        padding: 15px 10px;
    }

    .messenger-link {
        padding: 10px 15px;
        font-size: 13px;
    }

    .social-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* O
verride white backgrounds on calculator page */
.page-template-page-calculator .has-white-background-color,
.page-template-page-calculator input[type="text"],
.page-template-page-calculator input[type="email"],
.page-template-page-calculator input[type="tel"],
.page-template-page-calculator input[type="number"],
.page-template-page-calculator textarea,
.page-template-page-calculator select {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

.page-template-page-calculator input::placeholder,
.page-template-page-calculator textarea::placeholder {
    color: #9ca3af !important;
}

.page-template-page-calculator input:focus,
.page-template-page-calculator textarea:focus,
.page-template-page-calculator select:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(139, 92, 246, 0.5) !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2) !important;
}

/* Override any WordPress white background classes */
.page-template-page-calculator .has-white-background-color {
    background-color: rgba(255, 255, 255, 0.05) !important;
}

/* Ensure calculator form elements have dark theme */
.calculator-form input,
.calculator-form textarea,
.calculator-form select {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border-radius: 8px;
    padding: 12px 16px;
}

.calculator-form input:focus,
.calculator-form textarea:focus,
.calculator-form select:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(139, 92, 246, 0.5) !important;
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2) !important;
}

/* Force dar
k theme for calculator section - override any white backgrounds */
.page-template-page-calculator .calculator-section,
.calculator-section {
    background: transparent !important;
    background-color: transparent !important;
}

/* Override any inline white background styles */
.page-template-page-calculator *[style*="background: white"],
.page-template-page-calculator *[style*="background-color: white"],
.page-template-page-calculator *[style*="background:#ffffff"],
.page-template-page-calculator *[style*="background-color:#ffffff"],
.page-template-page-calculator *[style*="background-color: #ffffff"] {
    background: transparent !important;
    background-color: transparent !important;
}

/* Specific override for calculator section with white background */
.calculator-section[style*="background: white"],
.calculator-section[style*="background-color: white"] {
    background: transparent !important;
    background-color: transparent !important;
}

/ * Improved text visibility for calculator elements */ .option-item label span {
    color: #ffffff !important;
    font-weight: 500;
}

.option-item .price {
    color: #8b5cf6 !important;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Calculator form text improvements */
.calculator-form h2 {
    color: #ffffff !important;
}

.calculator-form label {
    color: #ffffff !important;
}

/* Step cards text improvements */
.step-card h3 {
    color: #ffffff !important;
}

.step-card p {
    color: #e5e7eb !important;
}

/* Contact form improvements */
.contact-form-section h2 {
    color: #ffffff !important;
}

.contact-form-section label {
    color: #ffffff !important;
}

/* Form validation and helper text */
.form-group small {
    color: #9ca3af !important;
}

/* Fix t
ext visibility on service pages */
.services-section {
    color: #e5e7eb;
}

.services-section .service-content {
    color: #e5e7eb !important;
}

.services-section .service-content p {
    color: #e5e7eb !important;
    font-size: 1rem;
    line-height: 1.6;
}

.services-section .service-content h2 {
    color: #ffffff !important;
}

.services-section .service-content h3 {
    color: #8b5cf6 !important;
}

.services-section .service-content ul {
    color: #e5e7eb !important;
}

.services-section .service-content li {
    color: #e5e7eb !important;
}

.services-section .service-content strong {
    color: #ffffff !important;
}


/* CRITICAL: Force text visibility on all service pages with maximum specificity */
html body .services-section * {
    color: #e5e7eb !important;
}

html body .services-section h2,
html body .services-section .service-content h2 {
    color: #ffffff !important;
}

/* Ensure gradient-text works properly in services-section with same gradient as portfolio */
/* Override optimized.min.css with maximum specificity */
html body .services-section .service-content>h2:first-of-type .gradient-text,
html body .services-section .service-content h2:first-of-type .gradient-text,
html body .services-section .service-content h2 .gradient-text {
    background: linear-gradient(135deg, #8b5cf6, #a855f7, #ec4899) !important;
    background-size: 200% auto !important;
    background-position: 0% center !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    animation: gradient-shift 3s ease-in-out infinite alternate !important;
    transition: background-position 0.8s ease !important;
}

html body .services-section h3,
html body .services-section .service-content h3 {
    color: #8b5cf6 !important;
}

html body .services-section p,
html body .services-section .service-content p {
    color: #e5e7eb !important;
}

html body .services-section li,
html body .services-section .service-content li {
    color: #e5e7eb !important;
}

html body .services-section strong,
html body .services-section .service-content strong {
    color: #ffffff !important;
}

html body .services-section a,
html body .services-section .service-content a {
    color: #8b5cf6 !important;
}

html body .services-section ul,
html body .services-section .service-content ul {
    color: #e5e7eb !important;
}

/* Ensure service-features list is visible */
html body .service-features,
html body .service-features li {
    color: #e5e7eb !important;
}


/* EMERGENCY: Add background to ensure text is visible */
html body .services-section {
    background-color: #0a0a0f !important;
}

html body .services-section .service-content {
    background-color: transparent !important;
}

/* Ensure text has contrast */
html body .services-section * {
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.5) !important;
}