/*
Theme Name: IT Services
Theme URI: https://itservices.example.com
Author: IT Services
Author URI: https://itservices.example.com
Description: Professional IT Services website with remote support, VPS hosting, N8N automation and web development services. Accepts USDT payments.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: it-services
Tags: business, services, it, tech, hosting
*/

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #6C63FF;
    --primary-dark: #5A52D9;
    --primary-light: #8B84FF;
    --dark: #0D0D1A;
    --darker: #070712;
    --light: #1A1A2E;
    --white: #FFFFFF;
    --white-light: #F8F9FA;
    --gray: #8B8B9E;
    --gray-light: #E5E5E5;
    --gradient: linear-gradient(135deg, #6C63FF 0%, #8B84FF 100%);
    --shadow: 0 20px 40px rgba(108, 99, 255, 0.2);
    --shadow-sm: 0 4px 20px rgba(108, 99, 255, 0.1);
}

body { 
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif; 
    color: var(--dark); 
    background: var(--white); 
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 { 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 700; 
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: all 0.3s; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.site-header { 
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0; 
    background: rgba(255,255,255,0.98); 
    backdrop-filter: blur(20px); 
    z-index: 1000; 
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-light);
}

.header-inner { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
}

.logo-icon { 
    width: 45px; 
    height: 45px; 
    background: var(--gradient); 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 22px; 
    color: var(--white);
    font-weight: 800;
}

.logo-text { 
    font-size: 22px; 
    font-weight: 700; 
    color: var(--dark);
}

.logo-text span { color: var(--primary); }

.main-nav ul { 
    display: flex; 
    gap: 35px; 
    list-style: none; 
    align-items: center;
}

.main-nav a { 
    color: var(--dark); 
    font-weight: 500; 
    font-size: 15px; 
    transition: color 0.3s;
}

.main-nav a:hover { color: var(--primary); }

.header-cta { 
    background: var(--gradient); 
    color: var(--white); 
    padding: 12px 28px; 
    border-radius: 30px; 
    font-weight: 600; 
    font-size: 14px;
}

.header-cta:hover { 
    transform: translateY(-2px); 
    box-shadow: var(--shadow); 
    color: var(--white);
}

.hero { 
    min-height: auto; 
    display: flex; 
    align-items: center; 
    position: relative; 
    overflow: hidden; 
    padding: 100px 0 60px;
    background: linear-gradient(180deg, var(--white) 0%, var(--white-light) 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.hero-bg { 
    position: absolute; 
    inset: 0; 
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(108,99,255,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(108,99,255,0.05) 0%, transparent 40%);
}

.hero-content { 
    position: relative; 
    z-index: 2; 
    max-width: 100%;
}

.hero-badge { 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    background: rgba(108,99,255,0.1); 
    border: 1px solid rgba(108,99,255,0.2); 
    padding: 10px 20px; 
    border-radius: 30px; 
    margin-bottom: 25px; 
    font-size: 14px; 
    font-weight: 600;
    color: var(--primary);
}

.hero h1 { 
    font-size: 48px; 
    line-height: 1.1; 
    margin-bottom: 20px; 
    color: var(--dark);
}

.hero h1 span { color: var(--primary); }

.hero p { 
    font-size: 17px; 
    color: var(--gray); 
    margin-bottom: 30px; 
    max-width: 100%; 
}

.hero-buttons { 
    display: flex; 
    gap: 15px; 
    flex-wrap: wrap; 
}

.hero-video { 
    position: relative; 
    z-index: 2; 
    max-width: 100%; 
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--dark);
    aspect-ratio: 16/9;
    width: 100%;
}

@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero h1 { font-size: 36px; }
    .hero-buttons { justify-content: center; }
    .hero-video { max-width: 100%; margin-top: 30px; }
    .video-wrapper { max-width: 100%; }
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
}

.section {

.section-alt { background: var(--white-light); }

.section-header { 
    text-align: center; 
    margin-bottom: 60px; 
}

.section-label { 
    display: inline-block; 
    background: rgba(108,99,255,0.1); 
    color: var(--primary); 
    padding: 8px 20px; 
    border-radius: 30px; 
    font-size: 13px; 
    font-weight: 600; 
    margin-bottom: 15px; 
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 { 
    font-size: 42px; 
    margin-bottom: 15px; 
    color: var(--dark);
}

.section-header p { 
    color: var(--gray); 
    font-size: 17px; 
    max-width: 600px; 
    margin: 0 auto; 
}

.remote-support {
    background: linear-gradient(135deg, #6C63FF 0%, #8B84FF 100%) !important;
    padding: 80px 0;
    color: var(--white);
    display: block;
    width: 100%;
}

.remote-support .section-label {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.remote-support .section-header h2,
.remote-support .section-header p {
    color: var(--white) !important;
}

.remote-support .section-header h2,
.remote-support .section-header p {
    color: var(--white);
}

.remote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.remote-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.remote-content p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.8;
}

.remote-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.remote-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.remote-feature i {
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.remote-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--primary);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
}

.remote-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: var(--primary);
}

.remote-image {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.helpwire-preview {
    font-size: 120px;
    color: var(--primary);
    margin-bottom: 20px;
}

.remote-image p {
    color: var(--gray);
    font-weight: 500;
}

.about-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    align-items: center; 
}

.about-image { 
    position: relative; 
    border-radius: 20px;
    overflow: hidden;
    background: var(--light);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image i {
    font-size: 100px;
    color: var(--primary);
}

.about-image::before { 
    content: ''; 
    position: absolute; 
    width: 100%; 
    height: 100%; 
    border: 2px solid var(--primary); 
    border-radius: 20px; 
    top: 20px; 
    left: 20px; 
    z-index: -1; 
}

.about-content h2 { 
    font-size: 36px; 
    margin-bottom: 20px; 
    color: var(--dark);
}

.about-content > p { 
    color: var(--gray); 
    margin-bottom: 30px; 
    font-size: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--white-light);
    border-radius: 15px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
}

.services-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
}

.service-card { 
    background: var(--white); 
    padding: 40px 30px; 
    border-radius: 20px; 
    border: 1px solid var(--gray-light);
    transition: all 0.3s;
    text-align: center;
}

.service-card:hover { 
    transform: translateY(-10px); 
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.service-icon { 
    width: 80px; 
    height: 80px; 
    background: var(--white-light); 
    border-radius: 20px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--primary);
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: var(--gradient);
    color: var(--white);
}

.service-card h3 { 
    font-size: 22px; 
    margin-bottom: 12px; 
    color: var(--dark);
}

.service-card p { 
    color: var(--gray); 
    font-size: 15px; 
}

.why-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
}

.why-card { 
    background: var(--white); 
    padding: 40px 30px; 
    border-radius: 20px; 
    text-align: center;
    border: 1px solid var(--gray-light);
    transition: all 0.3s;
}

.why-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.why-icon { 
    width: 70px; 
    height: 70px; 
    background: var(--gradient); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 25px;
    font-size: 28px;
    color: var(--white);
}

.why-card h3 { 
    font-size: 20px; 
    margin-bottom: 12px; 
    color: var(--dark);
}

.why-card p { 
    color: var(--gray); 
    font-size: 15px; 
}

.pricing-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
}

.pricing-card { 
    background: var(--white); 
    padding: 40px 30px; 
    border-radius: 20px; 
    border: 1px solid var(--gray-light);
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-icon {
    width: 70px;
    height: 70px;
    background: var(--white-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: var(--primary);
}

.pricing-card h3 { 
    font-size: 24px; 
    margin-bottom: 10px; 
    color: var(--dark);
}

.pricing-price {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.pricing-price span {
    font-size: 16px;
    color: var(--gray);
    font-weight: 400;
}

.pricing-desc {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 14px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-size: 14px;
}

.pricing-features li i {
    color: var(--primary);
    font-size: 14px;
}

.pricing-card .btn-primary {
    width: 100%;
    justify-content: center;
}

.usdt-info {
    background: var(--white-light);
    padding: 30px;
    border-radius: 15px;
    margin-top: 20px;
    text-align: center;
}

.usdt-info h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 16px;
}

.usdt-address {
    background: var(--white);
    padding: 15px;
    border-radius: 10px;
    font-family: monospace;
    font-size: 12px;
    word-break: break-all;
    border: 1px solid var(--gray-light);
    margin-bottom: 10px;
}

.usdt-note {
    font-size: 12px;
    color: var(--gray);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.step-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}

.step-item p {
    color: var(--gray);
    font-size: 14px;
}

.step-arrow {
    position: absolute;
    top: 30px;
    right: -20px;
    color: var(--primary);
    font-size: 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark);
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 16px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--white-light);
    border-radius: 15px;
    transition: all 0.3s;
}

.contact-method:hover {
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
}

.contact-details h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-details p {
    color: var(--gray);
    font-size: 14px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--gray-light);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--gray-light);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--white);
}

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

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.site-footer { 
    background: var(--dark); 
    padding: 60px 0 30px; 
}

.footer-grid { 
    display: grid; 
    grid-template-columns: 2fr 1fr 1fr 1fr; 
    gap: 50px; 
    margin-bottom: 50px; 
}

.footer-brand .logo { 
    margin-bottom: 20px; 
}

.footer-brand p { 
    color: var(--gray); 
    margin-bottom: 25px; 
    line-height: 1.8;
}

.social-links { 
    display: flex; 
    gap: 12px; 
}

.social-links a { 
    width: 44px; 
    height: 44px; 
    background: var(--light); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: all 0.3s;
    color: var(--white);
}

.social-links a:hover { 
    background: var(--primary); 
    transform: translateY(-3px); 
}

.footer-col h4 { 
    font-size: 18px; 
    margin-bottom: 25px; 
    color: var(--white); 
}

.footer-col ul { 
    list-style: none; 
}

.footer-col li { 
    margin-bottom: 14px; 
}

.footer-col a { 
    color: var(--gray); 
    transition: all 0.3s;
}

.footer-col a:hover { 
    color: var(--primary); 
}

.footer-bottom { 
    text-align: center; 
    padding-top: 30px; 
    border-top: 1px solid var(--light); 
    color: var(--gray); 
    font-size: 14px; 
}

@media (max-width: 1024px) {
    .hero { flex-direction: column; text-align: center; padding-top: 120px; }
    .hero-content { max-width: 100%; margin-bottom: 50px; }
    .hero-video { max-width: 100%; margin-left: 0; }
    .hero h1 { font-size: 42px; }
    .hero-buttons { justify-content: center; }
    .remote-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .step-arrow { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 32px; }
    .section-header h2 { font-size: 32px; }
    .main-nav { display: none; }
    .services-grid, .why-grid, .steps-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr; }
    .remote-features { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 300px; justify-content: center; }
}

/* Gutenberg Editor Styles */
.block-editor-block-list__block {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.wp-block {
    max-width: 1200px;
}

.wp-block-cover,
.wp-block-group.has-background {
    max-width: 100%;
}

.wp-block-button__link {
    background: var(--gradient);
    border-radius: 50px;
    padding: 16px 36px;
    font-weight: 600;
}

.wp-block-button__link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
