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

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    background: #000;
}

/* Navigation Bar */
.navbar {
    padding: 15px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    color: rgba(255, 255, 255, 1);
    text-transform: uppercase;
    backdrop-filter: blur(14px);
    background: rgba(0, 0, 0, 0.6);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: rgba(255, 255, 255, 1);
}

.navbar .logo p {
    font-size: 1em;
    font-weight: 700;
    letter-spacing: 3px;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
}

.navbar .nav-links li {
    margin-left: 20px;
}

.navbar .nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 1);
    font-weight: 300;
    transition: color 0.3s;
}

.navbar .nav-links a:hover {
    color: #00A1E0;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle i {
    font-size: 1.5em;
    color: #fff;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    background-color: #000;
    min-height: 100vh;
    background-image: url('assets/hero-bg.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position-x: 100%;
    color: #fff;
    position: relative;
    padding-top: 100px;
    padding-bottom: 120px;
}

.hero::after {
    content: "";
    position: absolute;
    top: 10%;
    right: -5%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(0, 161, 224, 0.2) 0%, rgba(0, 161, 224, 0.06) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
}

.hero h1 {
    font-size: 3.5em;
    text-transform: uppercase;
    line-height: 1.2;
}

.hero h4 {
    margin-top: 20px;
    font-size: 1.5em;
    font-weight: 400;
    color: #C4C4C4;
}

.hero p {
    font-size: 1.2em;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 10%;
    padding-top: 20px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: #00A1E0;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 30px;
    max-width: fit-content;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 161, 224, 0.4);
}

/* Partner Badges */
.partner-badges {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    max-width: fit-content;
}

.badge-aws {
    border: 1px solid rgba(255, 153, 0, 0.3);
}

.badge-sf {
    border: 1px solid rgba(0, 161, 224, 0.3);
}

.aws-logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.aws-logo-text .aws-smile {
    color: #FF9900;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: -6px;
    transform: scaleX(2.5) scaleY(0.8);
}

.aws-logo-text .aws-text {
    color: #FF9900;
    font-size: 26px;
    font-weight: 700;
    font-family: 'Amazon Ember', 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: -1px;
}

.badge-label {
    color: #C4C4C4;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sf-icon {
    display: flex;
    align-items: center;
    line-height: 0;
}

.sf-text {
    color: #00A1E0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Logo Carousel */
.logos {
    width: 100%;
    position: absolute;
    bottom: 20px;
}

.logos p {
    text-transform: uppercase;
    text-align: center;
    color: #00A1E0;
    margin-bottom: 30px;
    font-size: 15px;
    font-weight: 400;
}

.logo-carousel {
    overflow: hidden;
}

.logo-track {
    display: flex;
    animation: scroll 30s linear infinite;
}

.logo-track img {
    margin: 0 20px;
}

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

/* Section Headers */
.section-header {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 20px;
    background: linear-gradient(-40deg, #00A1E0, #A962FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

/* The Bridge Section */
.bridge-section {
    background: #111;
    padding: 80px 0;
}

.bridge-section .section-content {
    text-align: center;
    margin-bottom: 3rem;
}

.bridge-section h2 {
    font-size: 2.5em;
    color: #fff;
    margin-bottom: 16px;
}

.bridge-section > .container > p {
    color: #C4C4C4;
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto;
}

.bridge-visual {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
    margin-top: 3rem;
}

.bridge-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.bridge-box .box-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    line-height: 0;
}

.bridge-box h3 {
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 0.75rem;
}

.bridge-box p {
    color: #C4C4C4;
    font-weight: 300;
    font-size: 0.95em;
    line-height: 1.6;
}

.bridge-box-sf {
    border-color: rgba(0, 161, 224, 0.3);
}

.bridge-box-aws {
    border-color: rgba(255, 153, 0, 0.3);
}

.bridge-box-result {
    border-color: rgba(25, 251, 155, 0.3);
}

.bridge-arrow {
    color: #C4C4C4;
    font-size: 2rem;
}

/* Services Section */
.services-section {
    background: #000;
    padding: 80px 0;
}

.services-section .section-content {
    text-align: center;
    margin-bottom: 3rem;
}

.services-section h2 {
    font-size: 2.5em;
    color: #fff;
    margin-bottom: 16px;
}

.services-section > .container > p {
    color: #C4C4C4;
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 4px solid #00A1E0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 161, 224, 0.15);
}

.service-card h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3em;
}

.service-card p {
    color: #C4C4C4;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 300;
}

.service-card .learn-more {
    color: #00A1E0;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 0.5rem;
}

.service-card .learn-more:hover {
    text-decoration: underline;
}

/* Color line accents */
.color-line {
    display: inline-block;
    margin-right: 18px;
    margin-bottom: -4px;
    width: 3px;
    height: 30px;
}

.sf-line { background-color: #00A1E0; }
.orange-line { background-color: #FF9900; }
.purple-line { background-color: #9945FF; }
.green-line { background-color: #19FB9B; }

/* Use Cases Section */
.use-cases {
    background: #111;
    padding: 80px 0;
}

.use-cases .section-content {
    text-align: center;
    margin-bottom: 3rem;
}

.use-cases h2 {
    font-size: 2.5em;
    color: #fff;
    margin-bottom: 16px;
}

.use-cases > .container > p {
    color: #C4C4C4;
    font-size: 1.1em;
}

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

.case-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease;
}

.case-card:hover {
    transform: translateY(-3px);
}

.case-card .case-logo {
    height: 40px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.case-card .case-industry {
    background: rgba(0, 161, 224, 0.15);
    color: #00A1E0;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

.case-card h3 {
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 0.75rem;
}

.case-card p {
    color: #C4C4C4;
    font-weight: 300;
    line-height: 1.6;
    font-size: 0.95em;
}

.case-card .case-highlight {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #00A1E0;
    font-weight: 600;
    font-size: 0.95em;
}

/* Why AI-First Section */
.why-section {
    background: #000;
    padding: 80px 0;
}

.why-section .section-content {
    text-align: center;
    margin-bottom: 3rem;
}

.why-section h2 {
    font-size: 2.5em;
    color: #fff;
    margin-bottom: 16px;
}

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

.why-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-3px);
}

.why-card .icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    line-height: 0;
}

.why-card h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.4em;
}

.why-card p {
    color: #C4C4C4;
    font-weight: 300;
    line-height: 1.6;
}

.why-card .highlight {
    color: #00A1E0;
    font-weight: 700;
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.cert-breakdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.cert-item {
    background: rgba(0, 161, 224, 0.1);
    border: 1px solid rgba(0, 161, 224, 0.3);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 12px;
    color: #00A1E0;
    white-space: nowrap;
}

/* FAQ Section */
.faq-section {
    background: #111;
    padding: 80px 0;
}

.faq-section .section-content {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-section h2 {
    font-size: 2.5em;
    color: #fff;
    margin-bottom: 16px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1em;
    font-weight: 600;
    text-align: left;
    padding: 8px 0;
    font-family: 'Inter', sans-serif;
}

.faq-question .toggle {
    color: #00A1E0;
    font-size: 1.5em;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 12px;
}

.faq-answer p {
    color: #C4C4C4;
    font-weight: 300;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    position: relative;
    overflow: hidden;
    background-color: #000;
    padding: 80px 0;
}

.contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/contact-bg.svg');
    background-size: cover;
    background-position: center;
    filter: blur(18px);
    z-index: 1;
}

.contact > * {
    position: relative;
    z-index: 2;
}

.contact .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    gap: 10px;
    margin-bottom: 40px;
}

.contact-text h4 {
    font-size: 24px;
    font-weight: 400;
    color: #FFFFFF;
}

.contact-text h2 {
    font-size: 48px;
    font-weight: 400;
    background: linear-gradient(10deg, #00A1E0, #A962FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.contact-form {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.full {
    width: 100%;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    background-color: rgba(0, 161, 224, 0.08);
    border: 1px solid rgba(0, 161, 224, 0.2);
    border-radius: 25px;
    padding: 16px 24px;
    color: white;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #00A1E0;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C4C4C4' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    cursor: pointer;
}

.contact-form select option {
    background: #111;
    color: white;
}

.contact-form textarea {
    border-radius: 25px;
    resize: none;
}

.submit-btn {
    display: flex;
    justify-content: center;
}

.submit-btn button {
    background-color: #00A1E0;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    padding: 16px 48px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.submit-btn button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 161, 224, 0.4);
}

/* Footer */
.footer {
    background-color: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .container {
    color: white;
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-text h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.footer-text p {
    color: #848895;
    font-size: 14px;
    font-weight: 300;
}

.footer-text .parent-link {
    margin-top: 8px;
}

.footer-text .parent-link a {
    color: #00A1E0;
    text-decoration: none;
    font-weight: 500;
}

.footer-text .parent-link a:hover {
    text-decoration: underline;
}

.legal-links {
    margin-top: 12px;
}

.legal-links a {
    color: #848895;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #00A1E0;
}

.legal-links span {
    color: #848895;
    margin: 0 10px;
    font-size: 14px;
}

.footer .icons a {
    text-decoration: none;
}

.footer .icons a img {
    transition: filter 0.3s ease;
}

.footer .icons a:hover img {
    filter: invert(37%) sepia(98%) saturate(1873%) hue-rotate(176deg) brightness(100%) contrast(94%);
}

.footer .icons {
    display: flex;
    gap: 28px;
    align-items: center;
}

/* Sticky Mobile CTA */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-top: 1px solid rgba(0, 161, 224, 0.3);
}

.mobile-cta-inner {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.mobile-cta a {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.mobile-cta .cta-call {
    background: transparent;
    border: 1px solid #00A1E0;
    color: #00A1E0;
}

.mobile-cta .cta-assess {
    background: #00A1E0;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        position: absolute;
        top: 70px;
        right: 0;
        left: 0;
        width: 100%;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        padding: 20px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar .nav-links.mobile-menu {
        display: flex;
    }

    .navbar .nav-links li {
        margin: 15px 20px;
        text-align: center;
    }

    .navbar .nav-links a {
        font-size: 1.1em;
        display: block;
        padding: 10px 0;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding: 120px 20px 100px;
        text-align: center;
        min-height: auto;
    }

    .hero h1 {
        font-size: 1.8em;
    }

    .hero h4 {
        font-size: 1em;
        line-height: 1.5;
    }

    .hero h4 br {
        display: none;
    }

    .hero-text {
        margin-bottom: 20px;
    }

    .logos {
        position: static;
        margin-top: 30px;
    }

    .partner-badges {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        margin: 20px auto 0;
    }

    .bridge-visual {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bridge-arrow {
        transform: rotate(90deg);
    }

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

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

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

    .form-row {
        flex-direction: column;
    }

    .contact-text h2 {
        font-size: 32px;
    }

    .footer .container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .mobile-cta {
        display: block;
    }

    body {
        padding-bottom: 70px;
    }
}

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