/* LxIntertrans Professional Theme */
:root {
    --primary: #0a2540; /* Deep Navy - Professional */
    --accent: #00d4ff;  /* Modern Cyan - Innovation */
    --text-dark: #1a1f36;
    --text-light: #697386;
    --white: #ffffff;
    --bg-light: #f7fafc;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    height: 90px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -1px;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
}

.btn-primary {
    background: var(--primary);
    color: var(--white) !important;
    padding: 12px 24px;
    border-radius: 5px;
}

.btn-primary:hover {
    background: var(--accent);
    color: var(--primary) !important;
}

/* Hero Section */
.hero {
    padding: 200px 0 120px;
    position: relative;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--primary);
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-main {
    background: var(--primary);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(10, 37, 64, 0.2);
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(10, 37, 64, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    padding: 16px 32px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid var(--primary);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

/* Services */
.services {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    padding: 40px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-bottom: 4px solid var(--accent);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

/* Global Reach */
.global-reach {
    padding: 100px 0;
    background: var(--primary);
    color: var(--white);
}

.global-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.global-text {
    flex: 1;
}

.global-text h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.global-text span {
    color: var(--accent);
}

.stats {
    display: flex;
    list-style: none;
    margin-top: 40px;
    gap: 40px;
}

.stats li {
    font-size: 1.1rem;
}

.stats strong {
    display: block;
    font-size: 2.5rem;
    color: var(--accent);
}

.global-map {
    flex: 1;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/world-map.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
}

.pulse-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
}

/* Contact */
.contact {
    padding: 100px 0;
}

.contact-card {
    background: var(--bg-light);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-card p {
    margin-bottom: 40px;
    color: var(--text-light);
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    gap: 20px;
}

input, textarea {
    padding: 15px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    width: 100%;
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    background: #fdfdfd;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-links a {
    margin-left: 20px;
    color: var(--text-light);
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.8rem; }
    .services-grid { grid-template-columns: 1fr; }
    .global-flex { flex-direction: column; }
    .form-group { flex-direction: column; }
}
