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

:root {
    --primary-color: #092A3E;
    --accent-color: #FF8018;
    --text-color: #1E1E1E;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 105px;
    display: flex;
    align-items: center;
    width: 100%;
}

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

.logo img {
    height: auto;
    max-height: 60px;
    width: auto;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
    position: relative;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger:hover span {
    background: var(--accent-color);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transition: right 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.nav-header {
    background: var(--primary-color);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav-header img {
    height: 40px;
    width: auto;
}

.nav-menu.active {
    right: 0;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 9999;
    pointer-events: none;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-content {
    position: relative;
    padding: 2rem 2rem 2rem;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--white);
    -webkit-overflow-scrolling: touch;
}

.nav-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
    z-index: 2;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.nav-list {
    list-style: none;
    margin-top: 2rem;
}

.nav-list li {
    margin-bottom: 1rem;
}

.nav-link {
    display: block;
    padding: 1rem;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover {
    background: var(--light-gray);
    color: var(--accent-color);
    padding-left: 1.5rem;
}

.section {
    padding: 6rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero {
    margin-top: 105px;
    padding: 4rem 0;
    background: var(--light-gray);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-bullets {
    list-style: none;
}

.hero-bullets li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-color);
}

.hero-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.what-we-do {
    background: var(--white);
}

.what-we-do-grid {
    display: flex;
    gap: 3rem;
}

.what-we-do-item {
    flex: 1;
}

.what-we-do-item h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.what-we-do-item p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.8;
}

.support {
    background: var(--light-gray);
}

.recent-work {
    background: var(--white);
}

.recent-work-grid {
    display: flex;
    gap: 3rem;
}

.recent-work-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.work-image-container {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.work-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 16px;
    height: 105px;
}

.work-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.work-screenshot {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 315px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-screenshot:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.work-screenshot img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 20px;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.work-screenshot:hover img {
    transform: scale(1.02);
}

.recent-work-item h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.recent-work-item p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.8;
}

.recent-work-item p:last-child {
    margin-bottom: 0;
    margin-top: 1.5rem;
}

.work-bullets {
    list-style: none;
    margin-top: 1.5rem;
}

.work-bullets li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.work-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.recent-work-item a {
    display: inline-block;
    margin-top: auto;
    padding: 0.5rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 128, 24, 0.3);
    text-align: center;
}

.recent-work-item a:hover {
    background: #E6700F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 128, 24, 0.4);
}

.recent-work-item a:active {
    transform: translateY(0);
}

.faq {
    background: var(--light-gray);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid #E0E0E0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.1rem 1.5rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    cursor: pointer;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    opacity: 0;
    transform: translateY(-4px);
    transition: max-height 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: #666;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.contact {
    background: var(--light-gray);
}

.about {
    background: var(--white);
}

.about-grid {
    display: flex;
    gap: 3rem;
}

.about-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.about-item h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-item p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.8;
}

.about-bullets {
    list-style: none;
    margin-top: auto;
    padding-top: 1.5rem;
}

.about-bullets li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.about-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.support-form,
.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.support-message {
    max-width: 700px;
    margin: 0 auto 2rem;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    display: none;
    font-size: 0.95rem;
}

.support-message.show {
    display: block;
}

.support-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.support-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.ticket-number {
    font-weight: 600;
    font-size: 1rem;
    margin-top: 0.75rem;
    color: var(--primary-color);
}

.hidden-field {
    display: none;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 1rem;
}

.required {
    color: #dc3545;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    background: var(--white);
    color: var(--text-color);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 128, 24, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

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

.btn-submit {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    background: var(--accent-color);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 128, 24, 0.3);
}

.btn-submit:hover {
    background: #E6700F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 128, 24, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.75rem;
}

.footer-address {
    font-size: 0.9rem;
    opacity: 0.85;
}

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

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-left p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-right {
    flex: 0 0 50%;
}

.footer-right h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.footer-list {
    list-style: none;
    column-count: 2;
    column-gap: 2rem;
}

.footer-list li {
    break-inside: avoid;
    padding: 0.25rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.9rem;
}

.footer-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

@media (max-width: 968px) {
    .hero-container {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-image img {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .what-we-do-grid,
    .recent-work-grid,
    .about-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .section-icon {
        width: 2rem;
        height: 2rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-right {
        flex: 1 1 100%;
    }

    .footer-list {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .header-container {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-container {
        padding: 0 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-image img {
        height: 300px;
    }

    .section {
        padding: 4rem 0;
    }

    .section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
    }

    .section-icon {
        width: 1.8rem;
        height: 1.8rem;
    }

    .nav-menu {
        max-width: 100%;
    }

    .what-we-do-item h3,
    .recent-work-item h3,
    .about-item h3 {
        font-size: 1.5rem;
    }

    .work-image-container {
        margin-bottom: 1.5rem;
        gap: 1rem;
    }

    .work-logo {
        padding: 1rem;
        height: 90px;
    }

    .work-logo img {
        max-height: 100%;
    }

    .work-screenshot {
        border-radius: 16px;
        height: auto;
    }

    .work-screenshot img {
        border-radius: 16px;
        height: auto;
        object-fit: contain;
    }

    .footer-list {
        column-count: 1;
    }
}

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

    .hero-bullets li {
        font-size: 1rem;
    }

    .section-icon {
        width: 1.5rem;
        height: 1.5rem;
    }

    .section h2 {
        font-size: 1.5rem;
        gap: 0.75rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
    }

    .btn-submit {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        align-items: center;
    }

    .footer-left {
        align-items: center;
    }

    .footer-logo img {
        height: 35px;
    }

    .footer-right {
        width: 100%;
    }
}
