:root {
    --primary: #007db3;
    --accent: #a8e0f9;
    --text-main: #333333;
    --text-light: #666666;
    --bg-light: #ffffff;
    --bg-alt: #f8f9fa;
    --bg-dark: #0a192f;
    --bg-darker: #060e1a;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Rethink Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}
ul {
    list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Gowun Batang', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-title h2 {
    font-size: 2.5rem;
    text-align: center;
}
.section-title.left h2 {
    text-align: left;
}
.separator {
    width: 250px;
    height: 3px;
    background: var(--accent);
    margin: 1rem auto 2.5rem auto;
}
.section-title.left .separator {
    margin: 1rem 0 2.5rem 0;
}
.btn-contact {
    background: var(--primary);
    color: #fff !important;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
}
.btn-contact:hover {
    background: #00608c;
    box-shadow: 0 4px 15px rgba(0, 125, 179, 0.4);
}
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
}
.btn-primary:hover {
    background: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    height: 45px;
    max-width: 60vw;
    object-fit: contain;
    transition: var(--transition);
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-menu a {
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
}
.nav-menu a:hover:not(.btn-contact) {
    color: var(--accent);
}
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: var(--transition);
}
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 80px;
    background: var(--bg-dark);
}
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/P1110520-scaled.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}
.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}
.stats-section {
    padding: 5rem 0;
    background: var(--bg-light);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.stat-item {
    text-align: left;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}
.stat-item:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary);
}
.stat-item img {
    height: 60px;
    margin-bottom: 1.5rem;
    object-fit: contain;
}
.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.stat-item p {
    color: var(--text-light);
    font-weight: 500;
}
.about-section {
    padding: 5rem 0;
    background: var(--bg-alt);
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}
.about-text p strong {
    color: var(--text-main);
}
.about-video {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.leadership-section {
    padding: 5rem 0;
    background: var(--bg-light);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}
.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    object-fit: cover;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.team-member:hover img {
    transform: scale(1.05);
}
.team-member h4 {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}
.team-member p {
    color: var(--primary);
    font-weight: 500;
}
.what-we-do-section {
    padding: 6rem 0;
    background: var(--bg-dark);
    color: #fff;
}
.layout-split {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
}
.what-we-do-text p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}
.highlights {
    margin-top: 2rem;
}
.highlights li {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent);
    position: relative;
    padding-left: 30px;
}
.highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fff;
}
.what-we-do-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.stat-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}
.stat-box:nth-child(1) {
    grid-column: span 2;
}
.stat-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}
.stat-box h3 {
    font-size: 2rem;
    color: var(--accent);
    margin: 1rem 0;
    line-height: 1.2;
}
.stat-box p {
    font-size: 1.1rem;
    opacity: 0.7;
}
.brands-section {
    padding: 6rem 0;
    background: var(--bg-alt);
}
.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.brand-item {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}
.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.brand-item img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s;
}
.brand-item:hover img {
    transform: scale(1.05);
}
.partners-section {
    padding: 5rem 0;
    background: var(--bg-light);
    text-align: center;
}
.partners-logo img {
    max-width: 100%;
    height: auto;
}
.gallery-section {
    padding: 5rem 0;
    background: var(--bg-alt);
    overflow: hidden;
}
.gallery-slider {
    width: 100%;
    padding: 1rem 0;
}
.gallery-grid {
    display: flex;
    gap: 1.5rem;
    padding: 0 5%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.gallery-grid::-webkit-scrollbar {
    display: none;
}
.gallery-grid img {
    height: 300px;
    width: auto;
    object-fit: cover;
    border-radius: 10px;
    scroll-snap-align: center;
    flex-shrink: 0;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}
.gallery-grid img:hover {
    transform: scale(1.02);
}
.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
}
.slider-btn:hover {
    background: var(--primary);
}
.left-arrow {
    left: 2%;
}
.right-arrow {
    right: 2%;
}
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.modal-content {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    animation: zoom 0.3s ease-in-out;
}
@keyframes zoom {
    from {
        transform: scale(0.8)
    }
    to {
        transform: scale(1)
    }
}
.close-modal {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.close-modal:hover,
.close-modal:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
.locations-section {
    padding: 6rem 0;
    background: var(--bg-light);
}
.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.location-item {
    grid-column: span 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 450px;
    box-shadow: var(--shadow);
}
.location-info {
    position: absolute;
    top: 2rem;
    left: 2rem;
    color: #fff;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}
.location-info svg {
    margin-bottom: 0.5rem;
    color: var(--accent);
}
.location-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.location-item:hover img {
    transform: scale(1.1);
}
.work-with-us {
    grid-column: span 2;
    padding: 3rem;
    background: var(--bg-alt);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    box-shadow: var(--shadow);
}
.work-with-us p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}
.footer {
    background: var(--bg-dark);
    color: #fff;
    padding: 5rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}
.footer-logo {
    height: 40px;
    margin-top: 1rem;
}
.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--accent);
    font-family: 'Gowun Batang', serif;
}
.footer-links li {
    margin-bottom: 1rem;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}
.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}
.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    display: block;
    width: 100%;
}
.nav-social-icon {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}
.nav-social-icon:hover {
    color: var(--accent);
    transform: translateY(-2px);
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 992px) {
    .stats-grid,
    .brands-grid,
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-content,
    .layout-split {
        grid-template-columns: 1fr;
    }
    .work-with-us {
        grid-column: span 2;
    }
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .team-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 2rem;
        text-align: center;
    }
    .nav-menu.active {
        display: flex;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .stats-grid,
    .brands-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }
    .location-item {
        grid-column: span 1;
    }
    .work-with-us {
        grid-column: span 1;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .social-icons {
        justify-content: center;
        margin-bottom: 0;
    }
}
