/* AppWT Website Packages Site - Main Stylesheet */
/* (c) 1997-2026 AppWT Web & AI Solutions (AppWT LLC) */

/* CSS RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

:root {
    --forest: #1B4332;
    --gold: #F4A261;
    --platinum: #F8F9FA;
    --obsidian: #0D2818;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
}

header {
    background: var(--obsidian);
    color: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--gold);
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--white);
    cursor: pointer;
    min-width: 48px;
    min-height: 48px;
}

.hero {
    background: linear-gradient(135deg, var(--forest) 0%, var(--obsidian) 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    margin-bottom: 20px;
    color: var(--gold);
}

.hero p {
    font-size: clamp(18px, 3vw, 24px);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: var(--gold);
    color: var(--obsidian);
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    transition: background 0.3s, transform 0.2s;
    min-height: 48px;
}

.cta-button:hover {
    background: #e89451;
    transform: translateY(-2px);
}

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

section h2 {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--forest);
    margin-bottom: 30px;
    text-align: center;
}

section h3 {
    font-size: clamp(22px, 3vw, 28px);
    color: var(--forest);
    margin-bottom: 15px;
}

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

.package-card {
    background: var(--white);
    border: 2px solid var(--platinum);
    border-radius: 8px;
    padding: 30px;
    transition: box-shadow 0.3s, transform 0.3s;
}

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

.package-card h3 {
    color: var(--forest);
    margin-bottom: 10px;
}

.price {
    font-size: 32px;
    font-weight: bold;
    color: var(--gold);
    margin: 15px 0;
}

.package-card ul {
    list-style: none;
    margin: 20px 0;
}

.package-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.package-card li:before {
    content: "+";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 18px;
}

.comparison-table {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    background: var(--white);
    border-radius: 8px;
    margin-top: 30px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th {
    background: var(--forest);
    color: var(--white);
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

table td {
    padding: 15px;
    border-bottom: 1px solid var(--platinum);
}

table tr:hover {
    background: #f1f1f1;
}

.platform-box {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid var(--gold);
}

.platform-box h3 {
    color: var(--forest);
    margin-bottom: 15px;
}

.pros-cons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.pros, .cons {
    padding: 15px;
    border-radius: 5px;
}

.pros {
    background: #d4edda;
    border-left: 3px solid #28a745;
}

.cons {
    background: #f8d7da;
    border-left: 3px solid #dc3545;
}

.pros h4, .cons h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.faq-item {
    background: var(--white);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    border-left: 3px solid var(--gold);
}

.faq-item h3 {
    color: var(--forest);
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--forest);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

button[type="submit"] {
    background: var(--gold);
    color: var(--obsidian);
    padding: 14px 28px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    max-width: 280px;
    display: block;
    margin: 0 auto;
    min-height: 48px;
    transition: background 0.3s;
}

button[type="submit"]:hover {
    background: #e89451;
}

footer {
    background: var(--obsidian);
    color: var(--white);
    padding: 40px 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 15px;
}

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

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
}

@media (max-width: 1024px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }

    section, .section, .container {
        max-width: 100vw;
        overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6, p, li, span, a {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--obsidian);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    nav ul.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

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

    .hero {
        padding: 60px 20px;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
    }

    .comparison-table {
        overflow-x: auto;
    }

    table {
        font-size: 14px;
    }

    table th,
    table td {
        padding: 10px;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    section h2 {
        font-size: 24px;
    }

    .package-card {
        padding: 20px;
    }

    .price {
        font-size: 28px;
    }
}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}
