/*
Theme Name: NAARKS Consulting
Theme URI: https://naarksconsulting.com
Description: A modern, professional WordPress theme for NAARKS Consulting - ERP and systems integration consulting
Version: 1.0.0
Author: NAARKS Consulting
Author URI: https://naarksconsulting.com
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: naarks-consulting
Domain Path: /languages
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    text-align: justify;
}

/* Header & Navigation */
header {
    background: #f8fafb;
    color: #1e3a5f;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-bottom: 1px solid #e0e7f1;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-mark {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-mark svg {
    width: 100%;
    height: 100%;
}

.logo-text h1 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1e3a5f;
    white-space: nowrap;
}

.logo-text a {
    text-decoration: none;
    color: #1e3a5f;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    color: #1e3a5f;
    text-decoration: none;
    margin-left: 2rem;
    transition: opacity 0.3s;
    font-size: 0.95rem;
    font-weight: 500;
}

nav a:hover {
    color: #00bcd4;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8c 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
}

.tagline {
    font-size: 1.3rem;
    color: #a8d5ff;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: #00bcd4;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background-color: #00acc1;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* About Section */
.about {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.about h2 {
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    text-align: left;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    text-align: justify;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #f8f9fb;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #00bcd4;
    transition: all 0.3s;
    text-align: justify;
}

.feature-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.feature-card h3 {
    color: #1e3a5f;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    text-align: left;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    text-align: justify;
}

/* Services Section */
.services {
    background: #f0f4f9;
    padding: 4rem 2rem;
    margin: 4rem 0;
}

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

.services h2 {
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 0.5rem;
    text-align: center;
}

.services-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.service-item:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.service-item h3 {
    color: #1e3a5f;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
}

.service-item p {
    text-align: center;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00bcd4;
}

.service-icon i {
    color: #00bcd4;
    font-size: 3rem;
}

/* Expertise Section */
.expertise {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.expertise h2 {
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
    text-align: center;
}

.expertise-intro {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.expertise-item {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8c 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s;
}

.expertise-item:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(30, 58, 95, 0.2);
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #00bcd4 0%, #00acc1 100%);
    color: white;
    padding: 3rem 2rem;
    margin: 4rem 0;
    text-align: center;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.95;
    text-align: center;
}

/* CTA Section */
.cta-section {
    background: #1e3a5f;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Footer */
footer {
    background: #0f1f2e;
    color: #aaa;
    padding: 2rem;
    text-align: left;
    font-size: 0.9rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: left;
    color: #bbb;
}

.footer-info a {
    color: #00bcd4;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-info a:hover {
    color: #4dd0e1;
}

.footer-info i {
    color: #00bcd4;
    font-size: 1rem;
    margin-right: 0.3rem;
}

.footer-divider {
    border-top: 1px solid #333;
    padding-top: 2rem;
    margin-top: 2rem;
    color: #777;
    text-align: center;
}

/* Modal Styles */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: #1e3a5f;
}

.modal-content h2 {
    font-size: 2rem;
    color: #1e3a5f;
    margin-bottom: 0.5rem;
    text-align: center;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00bcd4;
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: #00bcd4;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background-color: #00acc1;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 188, 212, 0.3);
}

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

    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    nav {
        display: none;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .logo-text h1 {
        font-size: 16px;
    }

    .logo-mark {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 600px) {
    .modal-content {
        width: 95%;
        padding: 2rem;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }
}
