@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

@font-face {
    font-family: 'MARKPI';
    src: url('font/MARKPI.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #D90429;
    --primary-bright: #ef233c;
    --primary-gradient: linear-gradient(135deg, #D90429 0%, #640010 100%);
    --neon-glow: 0 0 10px rgba(217, 4, 41, 0.6), 0 0 20px rgba(217, 4, 41, 0.3);
    --bg-deep: #08090a;
    --bg-card: #131519;
    --text-white: #ffffff;
    --text-gray: #b0b5be;
    --border-tech: 1px solid rgba(255, 255, 255, 0.1);
}

* {
    box-sizing: border-box;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-gray);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    color: var(--text-white);
    letter-spacing: 1.5px;
    margin-top: 0;
}

h1 { letter-spacing: 3px; }

a {
    color: var(--primary-bright);
    text-decoration: none;
    transition: 0.3s ease;
}

a:hover {
    color: #fff;
    text-shadow: var(--neon-glow);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

#page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-content {
    flex-grow: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.site-header-dark {
    background: rgba(8, 9, 10, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    flex-shrink: 0;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.header-logo {
    max-height: 55px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.2));
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

.site-title {
    font-family: 'MARKPI', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(217, 4, 41, 0.3);
    transition: all 0.3s ease;
}

.brand-link:hover .site-title {
    color: var(--primary-bright);
    text-shadow: var(--neon-glow);
}

.site-navigation {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

.site-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.site-navigation li {
    position: relative;
}

.site-navigation a {
    position: relative;
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    text-transform: uppercase;
    color: #b0b5be;
    padding: 0.8rem 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 1px;
}

.site-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    transform: scaleX(0); 
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.site-navigation a:hover {
    color: #ffffff;
}

.site-navigation a:hover::after {
    transform: scaleX(1);
}

.site-navigation .current-menu-item a {
    color: #ffffff;
}

.site-navigation .current-menu-item a::after {
    transform: scaleX(1);
    background-color: var(--primary-bright);
}

.hero-section {
    position: relative;
    background-image: linear-gradient(to bottom, rgba(8,9,10,0.8), var(--bg-deep)),
    url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto-format&fit=crop&w=1740&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 10rem 1.5rem 8rem;
    text-align: center;
    margin: -80px -1.5rem 0 -1.5rem;
}

@media (min-width: 1100px) {
    .hero-section {
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5rem);
    line-height: 1;
    margin-bottom: 1.5rem;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.8);
    background: linear-gradient(180deg, #fff 40%, rgba(255,255,255,0) 100%);
    -webkit-background-clip: text;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.3));
}

.hero-text {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 1rem 2.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    position: relative;
    z-index: 1;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    background: linear-gradient(45deg, var(--primary), #ff4d6d);
    z-index: -1;
    transition: opacity 0.3s;
    opacity: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--neon-glow);
    color: #fff;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.9rem 2.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.services-preview-section {
    margin: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid #2a2e35;
    padding: 2.5rem;
    border-radius: 6px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    margin-top: 30px ;
}

.service-card::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.05) 50%, transparent 70%);
    background-size: 200% 100%;
    background-position: 100% 0;
    transition: background-position 0.5s;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #444;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.service-card:hover::after {
    background-position: -100% 0;
}

.card-title {
    color: #fff;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.service-card p {
    color: #999;
    font-size: 1rem;
}

.page-content {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 3rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.page-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 4px solid var(--primary);
}

.entry-content {
    color: #ccc;
    font-size: 1.15rem;
}

.entry-content p { margin-bottom: 1.5rem; }
.entry-content strong { color: #fff; font-weight: 600; }

.page-hero-section {
    background-color: #0b0c0f;
    padding: 6rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid #222;
    margin: -3rem -1.5rem 3rem -1.5rem;
    background-image: radial-gradient(#222 15%, transparent 16%);
    background-size: 20px 20px;
}

@media (min-width: 1100px) {
    .page-hero-section {
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
}

.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 5rem 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
    margin-top: 30px ;
}

@media (max-width: 1099px) {
    .cta-section {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        border-radius: 0;
    }
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: var(--primary);
    box-shadow: 0 0 20px var(--primary);
}

.cta-title {
    color: #fff;
    font-size: 2.5rem;
}

.cta-section .btn-primary {
    margin-top: 1rem;
    background: var(--primary-bright);
    box-shadow: 0 0 20px rgba(217, 4, 41, 0.4);
}

.cta-section .btn-primary:hover {
    background: #fff;
    color: var(--primary);
}

.wpforms-form { margin-top: 2rem; }

.wpforms-field-label {
    font-family: 'Rajdhani', sans-serif;
    color: var(--primary-bright);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.wpforms-form input, 
.wpforms-form textarea {
    width: 100%;
    background: #0d0e11;
    border: 1px solid #2a2e35;
    color: #fff;
    padding: 15px;
    font-family: 'Roboto', sans-serif;
    border-radius: 4px;
    transition: all 0.3s;
    margin-top: 5px;
}

.wpforms-form input:focus, 
.wpforms-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #111;
    box-shadow: 0 0 10px rgba(217, 4, 41, 0.2);
}

.wpforms-form button[type="submit"] {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 1rem 3rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%, 0 10px);
    cursor: pointer;
    transition: 0.3s;
}

.wpforms-form button[type="submit"]:hover {
    background: var(--primary-bright);
    box-shadow: var(--neon-glow);
}

.site-footer-dark {
    background-color: #050505;
    border-top: 1px solid #1a1a1a;
    padding: 4rem 0;
    margin-top: auto;
    color: #555;
    text-align: center;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.assistance-section {
    max-width: 900px;
    margin: 4rem auto;
    background: rgba(25, 27, 32, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.assistance-section .assistance-download a {
    display: inline-block;
    background-color: var(--primary);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.2s ease;
}

.assistance-section .assistance-description {
    color: #ccc;
    font-size: 1.2rem;
    margin: 2rem 0;
}

.assistance-warning {
    color: var(--primary-bright);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 2rem;
}

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

@media (max-width: 900px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .site-navigation {
        justify-content: center;
        width: 100%;
    }
    
    .site-navigation ul {
        justify-content: center;
    }
    
    .site-navigation a {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero-title { font-size: 2.5rem; }
    .site-content { padding: 0 1rem; }
    .page-content { padding: 1.5rem; }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}


.service-card {
    cursor: pointer;
    position: relative;
}

.click-info {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.modal-overlay {
    display: none; 
    position: fixed;
    z-index: 9999; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); 
    backdrop-filter: blur(5px); 
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
}


.modal-overlay.active {
    display: flex;
    opacity: 1;
    animation: fadeInModal 0.3s ease-out;
}


.modal-content {
    background: var(--bg-card); 
    border: 1px solid var(--primary); 
    padding: 3rem;
    width: 90%;
    max-width: 700px;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0,0,0,0.8), 0 0 20px rgba(217, 4, 41, 0.2);
    position: relative;
    text-align: left;
  
    background-image: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 100%);
}


.close-modal {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 0.7;
    transition: all 0.3s ease;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
    transform: rotate(90deg); 
}


.modal-title {
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem;
}


.modal-body {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.8;
    max-height: 60vh; 
    overflow-y: auto;
    padding-right: 10px; 
}


.modal-body::-webkit-scrollbar { width: 6px; }
.modal-body::-webkit-scrollbar-thumb { background: #444; }

@keyframes fadeInModal {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}


.woocommerce-page {
    background-color: var(--bg-deep) !important;
    color: var(--text-gray) !important;
}


.woocommerce-products-header__title.page-title {
    font-family: 'Rajdhani', sans-serif;
    color: #fff;
    font-size: 3rem;
    text-transform: uppercase;
    text-align: center;
    margin: 2rem 0;
    text-shadow: 0 0 15px rgba(255,255,255,0.2);
}


.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.woocommerce ul.products li.product {
    background: var(--bg-card);
    border: 1px solid #2a2e35;
    border-radius: 6px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%; 
    float: none;
}


.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    border-color: #555;
}

.woocommerce ul.products li.product a img {
    border-radius: 4px;
    margin-bottom: 1rem;
    transition: filter 0.3s;
    background: rgba(0,0,0,0.2); 
}


.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    color: #fff;
    padding-top: 1rem;
}

.woocommerce ul.products li.product .price {
    font-family: 'Rajdhani', sans-serif;
    color: var(--primary-bright);
    font-size: 1.4rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(217, 4, 41, 0.3);
}


.woocommerce ul.products li.product .price del {
    color: #666;
    font-size: 1rem;
    opacity: 0.7;
}


.woocommerce ul.products li.product .button,
.woocommerce #respond input#submit, 
.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button,
.woocommerce button.button.alt {
    background: var(--primary-gradient) !important;
    color: #fff !important;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    padding: 12px 25px;
    border-radius: 0;
    /
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    border: none;
    transition: all 0.3s;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce button.button.alt:hover {
    background: #fff !important;
    color: var(--primary) !important;
    box-shadow: var(--neon-glow);
    transform: translateY(-2px);
}


.woocommerce-cart-form, 
.woocommerce-checkout {
    background: #131519;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #333;
    margin-top: 2rem;
}


.woocommerce table.shop_table {
    border: 1px solid #333;
    border-radius: 4px;
    border-collapse: collapse;
    width: 100%;
}

.woocommerce table.shop_table th {
    background: #08090a;
    color: #fff;
    padding: 15px;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    border-bottom: 2px solid var(--primary);
}

.woocommerce table.shop_table td {
    background: #1a1c20;
    border-top: 1px solid #333;
    color: #ccc;
    padding: 15px;
}


.woocommerce form .form-row input.input-text, 
.woocommerce form .form-row textarea,
.select2-container .select2-selection--single {
    background-color: #0d0e11 !important;
    border: 1px solid #333 !important;
    color: #fff !important;
    padding: 10px;
    border-radius: 4px;
}

.woocommerce form .form-row label {
    color: var(--primary-bright);
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
}

.cart_totals {
    color: #fff;
}
.cart_totals h2 {
    color: #fff;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.woocommerce-message, .woocommerce-info, .woocommerce-error {
    background-color: #1a1c20;
    color: #fff;
    border-top: 3px solid var(--primary);
}
.woocommerce-message::before { color: var(--primary); }