/*
Theme Name: SmartBrok Exact Layout Theme
Theme URI: http://www.smartbrok.com
Author: AI Developer
Description: WordPress theme built EXACTLY from the original provided index.html layout.
Version: 1.0
Text Domain: smartbrok-exact
*/

:root {
            --primary: #1e40af;
            --primary-dark: #1e3a8a;
            --accent: #2563eb;
            --text-dark: #1f2937;
            --text-light: #4b5563;
            --bg-light: #f8fafc;
            --white: #ffffff;
            --footer-bg: #0f172a;
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--white);
        }

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

        /* Header */
        header {
            background-color: var(--footer-bg);
            color: var(--white);
            padding: 20px 0;
            border-bottom: 1px solid #1e293b;
        }

        .header-box {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo h1 {
            font-size: 2px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .logo img,
        .logo .custom-logo {
            max-height: 110px;
            height: auto;
            width: auto;
            display: block;
        }

        @media (max-width: 768px) {
            .logo img,
            .logo .custom-logo {
                max-height: 60px;
            }
        }

        .logo span {
            background-color: var(--accent);
            color: var(--white);
            font-size: 12px;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: bold;
        }
        .logo-sub {
            font-size: 11px;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 2px;
        }

        nav a {
            color: #cbd5e1;
            text-decoration: none;
            margin-left: 25px;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: var(--white);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
            color: var(--white);
            padding: 80px 0;
            text-align: center;
        }

        .hero h2 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 18px;
            color: #bfdbfe;
            max-width: 800px;
            margin: 0 auto 35px auto;
        }

        .alert-bar {
            background-color: rgba(255, 255, 255, 0.1);
            border-left: 4px solid #f59e0b;
            padding: 15px 25px;
            display: inline-block;
            border-radius: 0 8px 8px 0;
            font-size: 16px;
            font-weight: 500;
            text-align: left;
            max-width: 90%;
        }

        /* Services */
        .services {
            padding: 80px 0;
            background-color: var(--white);
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

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

        .service-card {
            background-color: var(--white);
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 30px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }

        .service-icon {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--accent);
        }

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

        .service-card p {
            font-size: 14px;
            color: var(--text-light);
        }

        /* Advantages */
        .advantages {
            padding: 80px 0;
            background-color: var(--bg-light);
        }

        .adv-list {
            max-width: 850px;
            margin: 0 auto;
        }

        .adv-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            background-color: var(--white);
            padding: 25px;
            border-radius: 8px;
            margin-bottom: 20px;
            border: 1px solid #edf2f7;
        }

        .adv-icon {
            color: #10b981;
            font-size: 20px;
            font-weight: bold;
            line-height: 1;
        }

        .adv-text h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .adv-text p {
            font-size: 14px;
            color: var(--text-light);
        }

        /* Process Steps */
        .process {
            padding: 80px 0;
            background-color: var(--white);
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .step-card {
            background-color: var(--bg-light);
            border-top: 4px solid var(--accent);
            padding: 25px;
            border-radius: 4px;
        }

        .step-num {
            font-size: 12px;
            color: var(--accent);
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 5px;
        }

        .step-card h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .step-card p {
            font-size: 14px;
            color: var(--text-light);
        }

        /* Footer / Contacts */
        footer {
            background-color: var(--footer-bg);
            color: var(--white);
            padding: 60px 0 30px 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            margin-bottom: 40px;
        }

        .footer-col h5 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #f8fafc;
        }

        .contact-link {
            display: block;
            color: #cbd5e1;
            text-decoration: none;
            margin-bottom: 12px;
            font-size: 14px;
            transition: color 0.2s;
        }

        .contact-link:hover {
            color: var(--white);
        }

        .cta-box {
            background-color: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 25px;
            border-radius: 6px;
        }

        .cta-box p {
            font-size: 14px;
            color: #94a3b8;
            margin-bottom: 15px;
        }

        .btn-messenger {
            display: inline-block;
            background-color: var(--accent);
            color: var(--white);
            padding: 10px 20px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: background-color 0.2s;
        }

        .btn-messenger:hover {
            background-color: #1d4ed8;
        }

        .copyright {
            text-align: center;
            border-top: 1px solid #1e293b;
            padding-top: 25px;
            font-size: 12px;
            color: #64748b;
        }

        @media (max-width: 768px) {
            .header-box {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            nav a {
                margin: 0 10px;
            }
            .hero h2 {
                font-size: 30px;
            }
            .hero p {
                font-size: 15px;
            }
        }

/* WordPress Scale and Layout Fix Override */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
}
header, .hero, .services, .advantages, .process, footer {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    clear: both !important;
}

