/* Color Variables */
:root {
    --primary: #fc5130;
    --dark: #303036;
    --accent: #30bced;
    --light: #fffaff;
    --shadow: rgba(0, 0, 0, 0.1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    padding: 1rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
    width: 100vw;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.navbar.scrolled {
    background-color: var(--dark);
    box-shadow: 0 2px 5px var(--shadow);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
    text-decoration: none;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
    margin: 0;
    padding: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    transition: color 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.nav-links a:hover {
    color: var(--accent);
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    margin-left: 10px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--light);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(rgba(48, 48, 54, 0.85), rgba(48, 48, 54, 0.85)), url('../assets/images/hero.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--light);
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary);
    color: var(--light);
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

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

/* Sections */
section {
    padding: 5rem 0;
}

/* Services Section */
.services {
    background-color: var(--light);
}

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

.service-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px var(--shadow);
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px var(--shadow);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-cta {
    display: inline-block;
    color: var(--primary);
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    margin-top: auto;
    width: 100%;
    text-align: center;
    text-decoration: none;
}

.service-cta:hover {
    color: #e84a2c;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--dark);
    color: var(--light);
    border-radius: 10px;
}

.pricing-note p {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Host Program Section */
.host-program {
    background-color: var(--dark);
    color: var(--light);
    padding: 5rem 0;
}

.host-program-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: center;
}

.host-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.host-info > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.benefit-item p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.host-image {
    position: relative;
}

.image-container {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
}

.image-container i {
    font-size: 8rem;
    color: var(--accent);
}

.floating-benefits {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.floating-benefit {
    background-color: var(--primary);
    color: var(--light);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    margin: 0.5rem 0;
    font-size: 0.9rem;
    animation: float 3s ease-in-out infinite;
}

.floating-benefit:nth-child(2) {
    animation-delay: 0.5s;
}

.floating-benefit:nth-child(3) {
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

.host-cta {
    text-align: center;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background-color: var(--light);
}

.faq-container {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.faq-toggle i {
    color: var(--primary);
    font-size: 1rem;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.faq-answer p {
    margin: 0;
    padding-bottom: 1.5rem;
    color: var(--text);
    line-height: 1.6;
    transform: translateY(-10px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-question {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item.active .faq-question h3 {
    color: var(--primary);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 1.5rem;
    opacity: 1;
    visibility: visible;
}

.faq-item.active .faq-answer p {
    transform: translateY(0);
    opacity: 1;
}

/* Locations Section */
.locations {
    background-color: var(--light);
    padding: 5rem 0;
}

.locations-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.locations-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.locations-info > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    color: #666;
}

.location-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px var(--shadow);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateX(10px);
}

.stat-item i {
    font-size: 2rem;
    color: var(--accent);
}

.stat-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.stat-info p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.map-container {
    background-color: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px var(--shadow);
}

.map-container iframe {
    border-radius: 5px;
}

/* Clients Section */
.clients {
    background-color: var(--dark);
    padding: 5rem 0;
    overflow: hidden;
    position: relative;
}

.clients h2 {
    color: var(--light);
    position: relative;
}

.clients h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--accent);
}

.clients .section-subtitle {
    text-align: center;
    color: var(--light);
    opacity: 0.8;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.faq .section-subtitle,
.contact .section-subtitle {
    text-align: center;
    margin-bottom: 1rem;
}

.logo-ticker-container {
    margin: 3rem -50vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 3rem 0;
    position: relative;
    width: 100vw;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.logo-ticker-container::before,
.logo-ticker-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.logo-ticker-container::before {
    left: 0;
    background: linear-gradient(to right, #f8f8f8 0%, transparent 100%);
}

.logo-ticker-container::after {
    right: 0;
    background: linear-gradient(to left, #f8f8f8 0%, transparent 100%);
}

.logo-ticker {
    overflow: hidden;
    white-space: nowrap;
    padding: 20px 0;
}

#logoStrip {
    display: flex;
    animation: scroll 40s linear infinite;
    width: max-content;
    list-style: none;
    will-change: transform;
}

@media (max-width: 768px) {
    #logoStrip {
        animation-duration: 25s;
    }
}

@media (max-width: 480px) {
    #logoStrip {
        animation-duration: 20s;
    }
}

#logoStrip li {
    flex-shrink: 0;
    width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

#logoStrip img {
    width: auto;
    height: 100px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
    margin: 0 2rem;
}

#logoStrip li:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 5rem 0;
    color: var(--dark);
}

.contact .section-subtitle {
    color: #666;
    opacity: 0.9;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent);
}

.info-item h3 {
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.info-item p {
    margin: 0;
    color: #666;
}

.info-item a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--accent);
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero h1, .hero .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Copyright */
.copyright {
    text-align: center;
    padding: 1.5rem 0;
    background-color: var(--dark);
    color: var(--light);
    font-size: 0.85rem;
}

.copyright p {
    margin: 0;
    opacity: 0.7;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 6px;
    color: var(--dark);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.15);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    background-color: rgba(255, 255, 255, 0.15);
}

.form-group select option {
    color: var(--dark);
    background: white;
    padding: 1rem;
}

.form-group select:invalid {
    color: #999;
}

.form-group select option {
    color: var(--dark);
    background: white;
}

.form-group select option[disabled] {
    color: #999;
}

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

.form-group button {
    width: 100%;
    padding: 1rem;
    background: var(--accent);
    color: var(--light);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group button:hover {
    background: #e64629;
    transform: translateY(-2px);
}

.form-result {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .locations-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        order: -1;
    }

    .stat-item:hover {
        transform: translateY(-5px);
    }

    .host-program-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .host-image {
        order: -1;
    }

    .floating-benefits {
        position: static;
        transform: none;
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
    }

    .floating-benefit {
        margin: 0;
    }
}

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

    /* Typography */
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    /* Navigation */
    .nav-toggle {
        display: flex;
        z-index: 1001;
        margin-left: 10px;
        padding: 0.5rem;
    }

    .navbar {
        padding: 0.8rem 0;
        width: 100vw;
        max-width: 100%;
        overflow-x: hidden;
    }

    .navbar .container {
        padding: 0 0.5rem;
        justify-content: space-between;
    }

    .logo {
        font-size: 1.2rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding-right: 0.5rem;
        max-width: 80%;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--dark);
        padding: 5rem 2rem 2rem;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    /* Hero Section */
    .hero {
        min-height: 60vh;
        padding: 6rem 0 3rem;
        background-attachment: scroll;
    }

    .hero p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        min-height: auto;
        padding: 1.5rem;
    }

    /* Host Program Section */
    .host-program-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .host-program {
        padding: 3rem 0;
    }

    .host-info h3 {
        font-size: 1.75rem;
        text-align: center;
    }

    .host-info > p {
        font-size: 1.1rem;
        text-align: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .floating-benefits {
        position: static;
        transform: none;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        margin-top: 2rem;
    }

    .floating-benefit {
        margin: 0;
        padding: 1rem;
        text-align: center;
        animation: none;
    }
    
    /* FAQ Section */
    .faq-container {
        padding: 0 1rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 1rem;
    }
    
    .faq-toggle {
        min-width: 24px;
    }

    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        order: 2;
    }

    .contact-form {
        order: 1;
        padding: 1.5rem;
    }

    /* Logo Ticker */
    #logoStrip li {
        width: 160px;
    }

    #logoStrip img {
        height: 80px;
    }

    /* Form Elements */
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .form-group button {
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .container {
        width: 100%;
        padding: 0 0.75rem;
    }

    .logo {
        font-size: 1rem;
    }

    .nav-toggle {
        padding: 0.4rem;
    }

    .nav-toggle span {
        width: 20px;
    }

    .navbar .container {
        padding: 0 0.5rem;
    }

    .hero {
        min-height: 50vh;
        padding: 5rem 0 2rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .service-card i {
        font-size: 2rem;
    }

    /* Host Program Section */
    .host-program {
        padding: 2.5rem 0;
    }

    .host-info h3 {
        font-size: 1.5rem;
    }

    .host-info > p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .benefits-grid {
        gap: 1rem;
    }

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

    .floating-benefit {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    /* FAQ Section */
    .faq {
        padding: 3rem 0;
    }
    
    .faq-container {
        margin-top: 2rem;
    }
    
    .faq-question {
        padding: 1.2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }

    #logoStrip li {
        width: 140px;
    }

    #logoStrip img {
        height: 60px;
    }

    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }
}
