/* Base styles */
:root {
    --primary-color: #ffffff;
    --background-color: #0a0a0a;
    --accent-color: #2a2a2a;
    --text-color: #ffffff;
    --hover-glow: 0 0 15px rgba(255, 255, 255, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--accent-color);
    animation: fadeInDown 0.5s ease-out;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    justify-content: center;
    flex: 1;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    text-shadow: var(--hover-glow);
}

.lang-switcher {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #fff;
    z-index: 10;
}

.lang-switcher .lang {
    color: #fff;
    text-decoration: none;
    margin: 0 0.2rem;
    font-weight: 600;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.lang-switcher .lang.active,
.lang-switcher .lang:hover {
    opacity: 1;
    text-shadow: 0 0 8px #fff;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 0 2rem;
}

.hero-content {
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    height: 200px;
    width: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.598));
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #a8a8a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.hero h2 {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    background-color: rgba(42, 42, 42, 0.1);
    position: absolute;
    bottom: 0;
}

.marquee {
    display: flex;
    animation: scroll 40s linear infinite;
    gap: 4rem;
    padding: 0 2rem;
}

.marquee img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.marquee img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* About Section */
.about {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.about.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

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

.about > .about-content > p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.services {
    margin: 4rem 0;
}

.services h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.services ul {
    list-style: none;
    padding: 0;
}

.services li {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
}

.services li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.differentiator {
    margin-top: 4rem;
}

.differentiator h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.car-service {
    background-color: var(--accent-color);
    padding: 3rem;
    border-radius: 15px;
}

.car-service h4 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.car-service p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Pricing Section */
.pricing {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.pricing h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.pricing h2 i {
    margin-right: 1rem;
    color: #fff;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing .agent-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pricing .agent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing .agent-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.pricing .agent-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing .agent-tagline {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.pricing .price {
    font-size: 2rem;
    color: #fff;
    margin: 1.5rem 0;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.pricing .features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.pricing .features li {
    color: #ccc;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing .features li:before {
    content: "•";
    color: #fff;
    position: absolute;
    left: 0;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.pricing .great-for {
    color: #888;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .pricing h2 {
        font-size: 2rem;
    }
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.contact.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.contact h2 {
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

input, textarea {
    width: 100%;
    padding: 1rem;
    background-color: var(--accent-color);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
}

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

button {
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: var(--hover-glow);
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }
    .lang-switcher {
        position: static;
        transform: none;
        margin-top: 0.5rem;
        text-align: center;
    }
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    .marquee img {
        height: 30px;
    }
}

/* tsParticles container */
#tsparticles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Clients Section */
.clients {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.clients.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.clients h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.client-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.client-card {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-align: left;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-glow);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.client-card .tagline {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.client-card .description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Agents Section */
.agents {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.agents.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.agents h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.agent-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.agent-card {
    background-color: var(--accent-color);
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.agent-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-glow);
}

.agent-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

.agent-tagline {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.channels {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.great-for {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .client-cards,
    .agent-cards {
        grid-template-columns: 1fr;
    }

    .agent-card {
        padding: 2rem;
    }
}

/* Icon Styles */
.card-icon i,
.agent-icon i,
h2 i {
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.card-icon i:hover,
.agent-icon i:hover {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
    transform: scale(1.1);
}

h2 i {
    margin-right: 0.5rem;
    font-size: 1.2em;
    vertical-align: middle;
}

.card-icon i,
.agent-icon i {
    font-size: 2.5rem;
}

/* Update existing card styles */
.client-card:hover .card-icon i,
.agent-card:hover .agent-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

/* Hamburger menu styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1100;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px 0;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 900px) {
    .navbar {
        padding-top: 0.3rem;
        padding-bottom: 0.3rem;
        min-height: unset;
    }
    .nav-content {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 0.3rem 0.7rem;
        gap: 0;
        position: relative;
    }
    .logo {
        margin: 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: auto;
    }
    .logo-img {
        height: 44px;
        max-width: 80vw;
    }
    .lang-switcher {
        margin: 0 auto;
        text-align: center;
        width: auto;
        font-size: 1rem;
        position: static;
        background: none;
        border-radius: 0;
        padding: 0;
        z-index: 1102;
        order: 2;
        flex: 1 1 0%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .hamburger {
        display: flex;
        position: relative;
        right: 0;
        top: 0;
        z-index: 1101;
        background: none;
        border: none;
        padding: 0;
        margin: 0;
        order: 3;
    }
    .logo {
        order: 1;
    }
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100vw;
        background: rgba(20, 20, 20, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s, opacity 0.3s;
        z-index: 1050;
        font-size: 1.6rem;
    }
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    .nav-links a {
        font-size: 1.5rem;
        padding: 1rem 0;
        display: block;
        width: 100vw;
    }
    .nav-open .nav-links {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav-links {
        display: flex;
    }
    .nav-open .lang-switcher {
        display: none !important;
    }
}

/* Hide nav-links by default on mobile */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    .nav-open .nav-links {
        display: flex;
    }
}

/* Hamburger animation when open */
.nav-open .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.nav-open .hamburger span:nth-child(2) {
    opacity: 0;
}
.nav-open .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hide hamburger when menu is open */
.nav-open .hamburger {
    display: none !important;
} 