/* Base Styles */
:root {
    --primary-color: #007bff;
    --secondary-color: #0056b3;
    --text-color: #333;
    --light-text: #666;
    --background-color: #fff;
    --section-bg: #f8f9fa;
    --border-color: #e9ecef;
    --svg-color: #007bff;
    --logo-width: 150px;
    --logo-width-tablet: 150px;
    --logo-width-mobile: 120px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
}

/* Header Styles */
header {
    background-color: var(--background-color);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: auto;
}

.logo svg {
    width: var(--logo-width);
    height: auto;
    fill: var(--primary-color);
}

header nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

header nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: var(--primary-color);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.close-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 4rem 2rem;
    background-color: var(--section-bg);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 2.8rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Features Section */
.features {
    padding: 4rem 2rem;
    background-color: var(--background-color);
}

.features-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.features-intro h2 {
    font-size: 2.2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.features-intro p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.6;
}

/*.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}*/
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    padding: 2rem;
    background-color: var(--section-bg);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-card p {
    color: var(--light-text);
    margin-bottom: auto;
    flex-grow: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    margin-top: 1.5rem;
    transition: color 0.3s ease;
}

.card-link svg {
    fill: var(--primary-color);
    transition: transform 0.3s ease;
}

.card-link:hover {
    color: var(--secondary-color);
}

.card-link:hover svg {
    transform: translateX(4px);
    fill: var(--secondary-color);
}

/* Targeting Section */
.targeting {
    padding: 4rem 2rem;
    background-color: var(--section-bg);
}

.targeting-content {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.targeting-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.targeting-content p {
    font-size: 1.2rem;
    color: var(--light-text);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.partners-section {
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: 8px;
    text-align: center;
}

.partners-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.partners-section p {
    color: var(--light-text);
}

.small-text {
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Online to OOH Section */
.online-ooh {
    padding: 4rem 2rem;
    background-color: var(--background-color);
}

.online-ooh-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.online-ooh-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.online-ooh-content p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

/* Form Pages Styles */
#submit-ticket-page,
#help-center-page,
#contact-us-page {
    display: none;
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 2rem auto;
    text-align: left;
}

#submit-ticket-page h2,
#help-center-page h2,
#contact-us-page h2 {
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: center;
}

/* Form Styles */
form div {
    margin-bottom: 1.5rem;
}

form label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

form input[type="text"],
form input[type="email"],
form select,
form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 1rem;
    transition: all 0.3s ease;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form select:focus,
form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

form textarea {
    resize: vertical;
    min-height: 120px;
}

form button {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

form button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Help Center Styles */
#help-center-page .search {
    display: flex;
    margin-bottom: 2rem;
    gap: 1rem;
}

#help-center-page .search input[type="text"] {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
}

#help-center-page .search button {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

#help-center-page .search button:hover {
    background-color: var(--secondary-color);
}

/* Social Links with SVG */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.social-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: var(--svg-color);
    transition: fill 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
}

.social-link:hover svg {
    fill: var(--secondary-color);
}

/* Footer */
footer {
    background-color: var(--section-bg);
    padding: 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.copyright {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 2rem;
    background-color: var(--background-color);
}

.faq-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.faq-intro h2 {
    font-size: 2.2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.faq-intro p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.6;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 1.25rem;
    background-color: var(--section-bg);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: var(--border-color);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--border-color);
    color: var(--text-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    background-color: white;
}

.faq-answer p {
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-item.active .faq-question {
    background-color: var(--primary-color);
    color: white;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background-color: white;
    color: var(--primary-color);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-answer p {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .logo svg {
        width: var(--logo-width-tablet);
    }

    #homepage .actions .card {
        width: 280px;
    }

    .hero-content {
        gap: 3rem;
    }

    .hero-text h1 {
        font-size: 2.4rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .features-intro h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .close-menu-btn {
        display: block;
    }

    header nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--background-color);
        transition: right 0.3s ease;
        padding: 2rem;
    }

    header nav.active {
        right: 0;
    }

    header nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .logo svg {
        width: var(--logo-width-mobile);
    }

    .hero {
        padding: 3rem 1.5rem;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image img {
        max-width: 400px;
    }

    .features-intro h2 {
        font-size: 1.8rem;
    }

    .feature-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }

    #help-center-page .search {
        flex-direction: column;
    }

    #help-center-page .search button {
        width: 100%;
    }

    .faq-section {
        padding: 3rem 1.5rem;
    }

    .faq-intro h2 {
        font-size: 1.8rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1rem;
    }

    .faq-answer {
        padding: 1rem;
    }

    .contact-info-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-info-section .social-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 1rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-image img {
        max-width: 300px;
    }

    .features-intro h2 {
        font-size: 1.6rem;
    }

    .features-intro p {
        font-size: 1rem;
    }

    .social-links {
        flex-direction: column;
        gap: 1rem;
    }

    main {
        padding: 1rem;
    }

    #submit-ticket-page,
    #help-center-page,
    #contact-us-page {
        padding: 1.5rem;
    }

    .logo svg {
        width: var(--logo-width-mobile);
    }

    .faq-section {
        padding: 2rem 1rem;
    }

    .faq-intro h2 {
        font-size: 1.6rem;
    }

    .faq-intro p {
        font-size: 1rem;
    }

    .faq-category h3 {
        font-size: 1.3rem;
    }

    .contact-info-section {
        padding: 2rem 1rem;
    }

    .contact-info-section .social-links {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background-color: var(--background-color);
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.contact-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-form-container {
    background-color: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-form-container h1 {
    font-size: 2.8rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
}

.contact-form-container p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 3rem;
    line-height: 1.6;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group:nth-last-child(2),
.form-group:last-child {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--section-bg);
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    background-color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--light-text);
    opacity: 0.7;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form .submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    background-color: var(--primary-color);
    color: white;
    width: 100%;
    max-width: 200px;
    margin: 1rem auto 0;
    grid-column: 1 / -1;
}

.contact-form .submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: var(--secondary-color);
}

/* Contact Info Section */
.contact-info-section {
    padding: 4rem 2rem;
    background-color: var(--section-bg);
    position: relative;
}

.contact-info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-info-section .info-group {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-info-section .info-group:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-info-section .info-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.contact-info-section .info-group h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.contact-info-section .info-group p {
    color: var(--light-text);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.contact-info-section .info-group a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-info-section .info-group a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.contact-info-section .social-links {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-info-section .social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-info-section .social-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.contact-info-section .social-link svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.contact-info-section .social-link:hover svg {
    fill: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-form {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }

    .contact-form-container {
        padding: 3rem 1.5rem;
    }

    .contact-form-container h1 {
        font-size: 2.2rem;
    }

    .contact-info-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-info-section .social-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 2rem 0;
    }

    .contact-form-container {
        padding: 2rem 1rem;
    }

    .contact-form-container h1 {
        font-size: 2rem;
    }

    .contact-form-container p {
        font-size: 1rem;
    }

    .contact-info-section {
        padding: 2rem 1rem;
    }

    .contact-info-section .social-links {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Button Styles */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    width: auto;
    max-width: none;
    margin: 0;
}

.cta-button.primary {
    background-color: var(--primary-color);
    color: white;
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-button.primary:hover {
    background-color: var(--secondary-color);
}

.cta-button.secondary:hover {
    background-color: var(--primary-color);
    color: white;
} 