:root {
    --bg-color: #040914;
    --card-bg: #0d1627;
    --card-bg-light: #16243b;
    --text-primary: #ffffff;
    --text-secondary: #8b9bb4;
    --accent: #2e81ff;
    --accent-glow: rgba(46, 129, 255, 0.3);
    --border-color: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography & Utilities */
.highlight {
    color: var(--accent);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--accent);
}

.btn-primary:hover {
    background-color: transparent;
    box-shadow: 0 0 15px var(--accent-glow);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

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

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    padding: 10rem 5% 5rem;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(46,129,255,0.1) 0%, rgba(4,9,20,0.8) 100%);
    pointer-events: none;
}

/* About Section */
.about-section {
    padding: 5rem 5%;
}

.about-container {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.accordion-wrapper {
    flex: 1;
}

.accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active {
    background: var(--card-bg-light);
    border-color: var(--accent);
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--text-primary);
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

.accordion-header .icon::after {
    content: '+';
    font-size: 1.5rem;
}

.accordion-item.active .accordion-header .icon::after {
    content: '-';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.accordion-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 400px;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(4, 9, 20, 0.85);
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* Products Section */
.products-section {
    padding: 5rem 5%;
}

.products-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.products-header p {
    color: var(--text-secondary);
}

.product-gallery {
    display: flex;
    height: 450px;
    gap: 1rem;
}

.product-card {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-size: cover;
    background-position: center;
}

.product-card.active {
    flex: 4;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 100%);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.product-card.active .card-overlay {
    opacity: 0.6;
}

.card-content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    transition-delay: 0.1s;
    pointer-events: none;
}

.product-card.active .card-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.card-num {
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    display: block;
}

.card-content h3 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.card-content p {
    color: #e0e0e0;
    font-size: 0.95rem;
    max-width: 400px;
}

.card-title-vertical {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) rotate(-90deg);
    transform-origin: left bottom;
    white-space: nowrap;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    transition: opacity 0.3s;
    opacity: 1;
}

.product-card.active .card-title-vertical {
    opacity: 0;
}

/* Global Reach Section */
.global-reach-section {
    padding: 5rem 5%;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.global-content {
    flex: 1;
}

.global-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.map-wrapper {
    flex: 2;
    position: relative;
}

.map-image {
    width: 100%;
    height: auto;
    opacity: 0.7;
}

.map-pin {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(13, 22, 39, 0.8);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid var(--accent);
    backdrop-filter: blur(5px);
}

.pin-dot {
    width: 10px;
    height: 10px;
    background-color: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
}

.pin-label {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 5%;
    text-align: center;
}

.testi-sub {
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

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

.testi-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.testi-card:hover {
    transform: translateY(-5px);
    border-color: rgba(46, 129, 255, 0.3);
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.testi-author h4 {
    font-size: 1rem;
}

.testi-author span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.testi-card p {
    color: #d1d5db;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.stars {
    color: #fbbf24;
    letter-spacing: 2px;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 5% 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-left {
    max-width: 400px;
}

.footer-left h3 {
    margin-bottom: 1rem;
}

.footer-left p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.link-column {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.link-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.link-column a:hover {
    color: var(--accent);
}

/* Responsive */
@media (max-width: 1024px) {
    .global-reach-section {
        flex-direction: column;
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .about-container {
        flex-direction: column;
    }
    .products-header {
        text-align: left;
    }
    .product-gallery {
        flex-direction: column;
        height: 600px;
    }
    .product-card.active .card-title-vertical {
        display: none;
    }
    .card-title-vertical {
        bottom: 50%;
        left: 2rem;
        transform: translateY(50%);
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .footer {
        flex-direction: column;
    }
}
