/*
Theme Name: Neo Creative Japan Theme
Theme URI: https://neocreativejapan.com
Author: Neo Creative Japan
Description: Custom theme for Neo Creative Japan
Version: 1.0
text-domain: ncj-theme
*/

/* Neo Creative Japan - Premium Dark Theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');

:root {
    /* Colors */
    --bg-primary: #0a0a0b;
    --bg-secondary: #121214;
    --bg-tertiary: #1c1c1f;

    --text-primary: #f2f2f2;
    --text-secondary: #a0a0a0;
    --text-accent: #00e5ff;
    /* Cyan Neon */
    --text-accent-gradient: linear-gradient(135deg, #00e5ff 0%, #2979ff 100%);

    --accent-color: #00e5ff;
    --accent-glow: rgba(0, 229, 255, 0.4);

    --border-color: rgba(255, 255, 255, 0.1);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    margin-top: 0 !important;
    /* Fix WP Admin bar gap */
}

body {
    font-family: 'Inter', 'Zen Kaku Gothic New', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: var(--spacing-md);
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.text-gradient {
    background: var(--text-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--text-accent-gradient);
    color: var(--bg-primary);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-secondary:hover {
    background: rgba(0, 229, 255, 0.1);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

header .container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 50px;
    /* Adjust based on header height */
    width: auto;
    object-fit: contain;
}

/* Removed text span styling - formerly, now re-adding for the new text */
.logo-text {
    margin-left: 10px;
    font-size: 1.2rem;
    font-family: "briller", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    white-space: nowrap;
    /* Prevent wrapping on small screens */
}

nav ul {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    /* Ensure nav items are vertically centered */
}

nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

nav a:hover,
nav a.active {
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Update path for WordPress */
    background: url('images/hero_bg.png') no-repeat center center/cover;
    z-index: -2;
    z-index: -2;
    /* Use CSS variable for brightness control via JS, default to 0.5 (darker) */
    filter: brightness(var(--hero-brightness, 0.8));
    /* Smooth transition for the filter effect */
    transition: filter 0.1s linear;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 11, 0.8) 0%, rgba(10, 10, 11, 0.4) 50%, rgba(10, 10, 11, 1) 100%);
    z-index: -1;
    opacity: var(--hero-overlay-opacity, 1);
    transition: opacity 0.5s ease;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    /* background: rgba(0, 0, 0, 0.3); Removed per user request */
    /* padding: var(--spacing-md); Removed */
    /* border-radius: 24px; Removed */
    /* border: 1px solid rgba(255, 255, 255, 0.1); Removed */
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.7);
}

.hero h1 .text-gradient {
    font-weight: 900;
    text-shadow: none;
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.9);
    paint-order: stroke fill;
    /* Ensure the stroke is drawn behind the fill */
}

.hero p {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 1;
    margin: 0 auto var(--spacing-md) auto;
    max-width: 600px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.7);
    /* Added for better readability against background */
}

.hero-stats {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
    padding-top: var(--spacing-md);
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--accent-color);
}

.stat-item p {
    font-size: 0.9rem;
    margin: 0;
}

/* About / Vision */
.vision {
    padding: var(--spacing-xl) 0;
    background: var(--bg-secondary);
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.vision-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.vision-text p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.card-feature {
    background: var(--bg-tertiary);
    padding: var(--spacing-md);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-top: var(--spacing-md);
}

.vision-image {
    position: relative;
    width: 100%;
    height: 400px;
    /* Fixed height to ensure video visibility */
    display: flex;
    /* Removes bottom space */
}

.vision-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    opacity: 0.9;
}

/* Services */
.services {
    padding: var(--spacing-xl) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.service-card {
    background: var(--bg-secondary);
    padding: var(--spacing-md);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    /* Ensure content is above overlay */
    z-index: 1;
}

/* Background Image Overlay */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0.8;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 0.6;
    /* Lighten overlay on hover */
}

/* Specific Backgrounds - these are now inline in PHP but keeping for ref */
.service-drone {
    /* background: url('images/service_drone.png') no-repeat center center/cover; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-video {
    /* background: url('images/service_video.png') no-repeat center center/cover; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-music {
    /* background: url('images/service_music.png') no-repeat center center/cover; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-ai {
    /* background: url('images/service_ai.png') no-repeat center center/cover; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--accent-color);
}

.service-card h3 {
    margin-bottom: var(--spacing-xs);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
}

.service-list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
}

.service-list li::before {
    content: '•';
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/* Market & Strengths (Features) */
.strengths {
    padding: var(--spacing-lg) 0;
    background: var(--bg-primary);
    /* Keep dark */
}

/* Profile / Company */
.profile {
    padding: var(--spacing-xl) 0;
    background: var(--bg-secondary);
}

.profile-table {
    width: 100%;
    margin-top: var(--spacing-md);
    border-collapse: collapse;
}

.profile-table th,
.profile-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.profile-table th {
    width: 30%;
    /* Restore width */
    color: var(--text-secondary);
    font-weight: 500;
    text-align: left;
    padding-left: 0;
    /* Remove extreme padding */
}

/* =========================================
   Unified Premium Service Page Styles
   ========================================= */
/* These classes require --theme-primary and --theme-secondary to be defined locally on the page */

.service-page-hero {
    color: #fff;
    padding: 200px 0 150px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 11, 0.4), rgba(10, 10, 11, 0.95));
    pointer-events: none;
    z-index: 1;
}

.service-page-hero-content {
    position: relative;
    z-index: 2;
}

.service-page-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-page-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
    display: block;
    margin-top: 1rem;
    letter-spacing: 3px;
    font-family: var(--font-primary);
}

.service-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(to right, var(--theme-primary, #fff), var(--theme-secondary, #ccc));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.premium-service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.premium-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, var(--theme-primary), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.premium-service-card>* {
    position: relative;
    z-index: 1;
}

.premium-service-card:hover {
    transform: translateY(-10px);
    border-color: var(--theme-primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.premium-service-card:hover::before {
    opacity: 0.15;
}

.premium-service-card i.feature-icon {
    font-size: 2.5rem;
    color: var(--theme-primary);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.premium-service-card:hover i.feature-icon {
    transform: scale(1.1);
}

.premium-btn {
    display: inline-block;
    padding: 1rem 3.5rem;
    background: linear-gradient(45deg, var(--theme-primary), var(--theme-secondary));
    color: #fff;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: #fff;
}

/* Premium Pricing Layout */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.pricing-card {
    background: rgba(20, 20, 22, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card.popular {
    border-color: var(--theme-primary);
    transform: scale(1.05);
    background: rgba(30, 30, 35, 0.9);
    position: relative;
}

.pricing-card.popular::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    border-radius: 17px;
    z-index: -1;
    opacity: 0.5;
    filter: blur(10px);
}

.pricing-badge {
    background: linear-gradient(45deg, var(--theme-primary), var(--theme-secondary));
    color: #fff;
    padding: 0.3rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--theme-primary);
    margin: 1.5rem 0 2rem;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.5rem;
}

.pricing-price span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: normal;
}

.pricing-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 0 auto;
    display: inline-block;
}

.pricing-features li {
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features i {
    color: var(--theme-primary);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .service-page-hero {
        padding: 150px 0 100px;
    }

    .service-page-title {
        font-size: 2.5rem;
    }

    .service-page-subtitle {
        font-size: 1.2rem;
    }

    .pricing-card.popular {
        transform: scale(1);
    }
}

/* Contact */
.contact {
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.contact h2 {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.contact p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

/* Contact Form */
.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-secondary);
    padding: var(--spacing-md);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: left;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.required {
    color: var(--accent-color);
    margin-left: 0.2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.submit-btn {
    width: 100%;
    font-size: 1.1rem;
    border: none;
    padding: 1rem;
}

/* Footer */
footer {
    padding: var(--spacing-md) 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Base style: hide mobile button on desktop */
.mobile-menu-btn {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .vision-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile menu implementation */
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 1002;
    }

    .mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 2px;
        background-color: var(--text-primary);
        margin: 5px 0;
        transition: all 0.3s ease;
    }

    /* Hamburger Animation */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 11, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1001;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    /* Mobile Dropdown styles */
    .nav-item-dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .dropdown-menu {
        position: static;
        /* Overrides absolute position on desktop */
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        /* Accordion effect */
        overflow: hidden;
        transform: none;
        /* Overrides desktop transform */
        min-width: auto;
        padding: 0;
        background: transparent;
        box-shadow: none;
        transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
    }

    .nav-item-dropdown.mobile-active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        /* High enough to show all items */
        padding: 1rem 0 0 0;
    }

    /* Disable the desktop hover effect on mobile to prevent glitches */
    .nav-item-dropdown:not(.mobile-active):hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        padding: 0;
        transform: none;
    }

    .nav-item-dropdown.mobile-active:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .dropdown-menu a {
        font-size: 1.2rem;
        padding: 0.5rem 0;
        color: var(--text-secondary);
    }
}

/* Contact Form 7 Styles */
.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.wpcf7-text,
.wpcf7-email,
.wpcf7-textarea,
.wpcf7-select {
    width: 100%;
    padding: 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.wpcf7-text:focus,
.wpcf7-email:focus,
.wpcf7-textarea:focus,
.wpcf7-select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

/* Post comment form submit button override */
.wpcf7-submit,
input.wpcf7-submit[type="submit"] {
    width: 100%;
    font-size: 1.1rem;
    border: none;
    padding: 1rem;
    background: var(--text-accent-gradient) !important;
    color: var(--bg-primary) !important;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: 0 4px 15px var(--accent-glow);
}


.wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.3);
}

.wpcf7-spinner {
    margin: 1rem auto 0;
}

.wpcf7-response-output {
    border-radius: 8px;
    padding: 1rem !important;
    margin-top: 1rem !important;
    font-size: 0.9rem;
}

.hero-stats {
    flex-direction: column;
    gap: var(--spacing-md);
}

.hero-stats {
    flex-direction: column;
    gap: var(--spacing-md);
}

/* Dropdown Menu */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    /* Align left edge with parent */
    background: var(--bg-secondary);
    min-width: 200px;
    border-radius: 8px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: background 0.3s;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent-color);
}

/* Service Page Styles */
.service-hero .overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-process .step-num {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2.5rem !important;
    }

    .features-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .desc-grid {
        grid-template-columns: 1fr;
    }
}

/* News Section Styles */
.news-item-home:hover {
    padding-left: 10px;
    background: rgba(255, 255, 255, 0.02);
}

.news-item-home:hover .arrow {
    opacity: 1;
    transform: translateX(0);
}

.news-item-home:hover .title {
    color: var(--accent-color);
}

.entry-content {
    line-height: 1.8;
}

.entry-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.entry-content h3 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

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

.entry-content ul,
.entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.entry-content li {
    margin-bottom: 0.5rem;
}

.news-title a:hover {
    color: var(--accent-color);
}

.pagination .page-numbers {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.2rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--accent-color);
    color: var(--bg-primary);
    border-color: var(--accent-color);
}