/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg-color: #08080c;
    --bg-accent: #0f1016;
    --text-color: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --accent-color: #d4af37;
    /* Premium Gold */
    --accent-glow: rgba(212, 175, 55, 0.4);
    --secondary-accent: #4a4ae2;
    /* Vibrant Indigo for depth */
    --glass-bg: rgba(15, 15, 20, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --card-bg: rgba(255, 255, 255, 0.03);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    background-image:
        radial-gradient(at 0% 0%, hsla(253, 16%, 10%, 1) 0, transparent 40%),
        radial-gradient(at 100% 0%, hsla(225, 39%, 15%, 1) 0, transparent 40%),
        radial-gradient(at 50% 50%, hsla(45, 60%, 20%, 0.05) 0, transparent 50%),
        radial-gradient(at 80% 80%, hsla(253, 30%, 15%, 1) 0, transparent 50%);
    background-attachment: fixed;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

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

h1,
h2,
h3,
h4,
.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Custom Selection */
::selection {
    background: var(--accent-color);
    color: #000;
}

/* Background Glowing Elements (Dynamic) */
.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    z-index: -1;
    filter: blur(120px);
    pointer-events: none;
    opacity: 0.15;
}

.glow-1 {
    top: -200px;
    right: -200px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
}

.glow-2 {
    bottom: -200px;
    left: -200px;
    background: radial-gradient(circle, var(--secondary-accent) 0%, transparent 70%);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    padding: 0.8rem 5%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 42px;
    width: auto;
    filter: drop-shadow(0 0 8px var(--accent-glow));
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-container:hover .logo-img {
    transform: rotate(5deg) scale(1.1);
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #fff 40%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 400px;
}

.logo-icon-placeholder {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-color), #8a6d1e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px var(--accent-glow);
    transition: var(--transition);
}

.logo-container:hover .logo-icon-placeholder {
    transform: rotate(-10deg) scale(1.1);
}

nav ul {
    display: flex;
    gap: 1.8rem;
    list-style: none;
}

nav ul li a {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: #fff;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Multi-Language Switcher (Bottom Left) */
.lang-switcher {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 10002;
    display: flex;
    gap: 10px;
    background: rgba(15, 15, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    max-width: 500px;
}

.lang-switcher.collapsed {
    max-width: 62px;
    gap: 0;
    padding: 10px;
}

.lang-switcher.collapsed .lang-btn:not(.lang-main) {
    opacity: 0;
    visibility: hidden;
    width: 0;
    margin: 0;
    padding: 0;
}

.lang-main {
    background: var(--accent-color) !important;
    color: #000 !important;
    cursor: pointer !important;
    z-index: 2;
    flex-shrink: 0;
}

.lang-switcher:hover {
    background: rgba(15, 15, 20, 0.6);
    border-color: rgba(212, 175, 55, 0.2);
}

.lang-btn {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 800;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.lang-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
    background: var(--accent-color);
    color: #000;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #b8952b);
    color: #000;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--accent-glow);
    background: linear-gradient(135deg, #e5c353, #d4af37);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* Hero Section Refinement */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 8%;
    overflow: hidden;
    background: #000;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(8, 8, 12, 0.8) 100%);
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    text-align: left;
    padding-left: 2rem;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #fff 40%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.1rem;
    max-width: 650px;
    margin-bottom: 3.5rem;
    color: var(--text-muted);
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(40px);
}

.hero-image img {
    width: 135%;
    max-width: 850px;
    margin-left: -25%;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
    animation: floatImg 6s ease-in-out infinite;
}

@keyframes floatImg {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}

/* Sections Base */
section {
    padding: 12rem 8%;
    position: relative;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 3.5rem;
    transition: var(--transition);
}

.glass-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

/* Vision Section */
.vision-section {
    position: relative;
    padding: 10rem 10%;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.vision-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(20, 20, 20, 0.8));
    padding: 3.5rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vision-card .card-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.mission-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mission-item {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
    transition: 0.3s;
}

.mission-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.mission-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 5px;
}

.mission-item h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.mission-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.about-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all 0.4s;
    backdrop-filter: blur(5px);
}

.about-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.1);
}

.about-card i {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

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

/* Services Highlight */
.services-highlight {
    padding: 10rem 10%;
}

.services-list-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: 0.3s;
}

.service-item:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.service-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Story Section */
.story-section {
    padding: 10rem 10%;
}

.story-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Products Section */
.products {
    background: var(--bg-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: rgba(15, 15, 15, 0.6);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* Section Headers Refined */
.section-header {
    text-align: center;
    margin-bottom: 7rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header span {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 2px 10px;
    border-left: 3px solid var(--accent-color);
}

.section-header h2 {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    background: linear-gradient(to bottom, #fff 30%, #a0a0a0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Vision & Mission Refinement */
.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
}

.vision-card {
    background: linear-gradient(225deg, rgba(212, 175, 55, 0.1) 0%, rgba(15, 15, 20, 0.8) 100%);
    padding: 4rem;
    border-radius: 40px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.vision-card .card-icon {
    width: 90px;
    height: 90px;
    background: var(--accent-color);
    color: #000;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2.5rem;
    transform: rotate(-5deg);
    box-shadow: 0 15px 30px var(--accent-glow);
}

.mission-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.mission-item {
    display: flex;
    gap: 24px;
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.mission-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(15px);
}

.mission-item i {
    color: var(--accent-color);
    font-size: 1.8rem;
    background: rgba(212, 175, 55, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    flex-shrink: 0;
}

/* Licenses Section Styling */
.licenses-section {
    padding: 10rem 10%;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.02));
}

.licenses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.license-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 1.5rem;
    transition: var(--transition);
    text-align: center;
}

.license-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.license-img-wrapper {
    width: 100%;
    height: 180px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.license-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: transform 0.5s;
}

.zoomable-container {
    position: relative;
    cursor: zoom-in;
}

.zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.zoomable-container:hover .zoom-overlay {
    opacity: 1;
}

.license-card:hover .license-img-wrapper img {
    transform: scale(1.05);
}

.license-info h3 {
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
}

/* Products Modernization */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
}

.product-card {
    background: var(--card-bg);
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.05), transparent);
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-15px);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.product-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-type {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 8px 16px;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(8px);
    color: var(--accent-color);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 8px;
    letter-spacing: 2px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 10;
}

.product-info {
    padding: 3rem;
}

.product-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: -0.5px;
}

.product-info p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--accent-color);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: gap 0.3s;
}

.product-link:hover {
    gap: 20px;
}

/* Premium Contact Cards in Footer */
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.contact-premium-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 1.8rem;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.contact-premium-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.contact-premium-card:hover::before {
    opacity: 1;
}

.contact-avatar,
.contact-details {
    position: relative;
    z-index: 1;
}

.contact-avatar {
    width: 80px;
    height: 80px;
    border-radius: 22px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-premium-card:hover .contact-avatar {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.contact-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-color);
}

.contact-role {
    display: block;
    color: var(--accent-color);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.contact-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.action-btn {
    text-decoration: none;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.action-btn i {
    font-size: 1rem;
    width: 20px;
}

.action-btn.wa:hover {
    color: #25D366;
}

.action-btn.mail:hover {
    color: var(--accent-color);
}

.action-btn span {
    border-bottom: 1px solid transparent;
}

.action-btn:hover span {
    border-color: currentColor;
}

.inquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Form Styles */
.inquiry-form-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 4rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 18px;
    color: #fff;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    background: rgba(0, 0, 0, 0.6);
    outline: none;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

/* Footer & Copyright */
.footer-wrap {
    background: #050508;
    padding: 10rem 10% 4rem;
    border-top: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.footer-wrap::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-logo-container {
    margin-bottom: 6rem;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.social-links a {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    color: #000;
    transform: translateY(-8px) rotate(8deg);
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px var(--accent-glow);
}

.copyright {
    text-align: center;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Image Zoom Modal (Lightbox) */
.image-modal {
    display: none;
    position: fixed;
    z-index: 100000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.modal-content {
    margin: auto;
    display: block;
    width: auto;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    animation: zoom 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes zoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #fff;
    padding: 20px 0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 100001;
}

.modal-close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
    }
}

/* Floating Chat Better Design */
.chat-toggle {
    width: 65px;
    height: 65px;
    background: var(--accent-color);
    color: #000;
    border-radius: 20px;
    font-size: 1.8rem;
    transform: rotate(-5deg);
    box-shadow: 0 15px 35px var(--accent-glow);
    transition: var(--transition);
}

/* Fully Enhanced Floating Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 380px;
    height: 520px;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
    z-index: 9999;
    animation: fadeInUp 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.chat-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
}

.chat-header strong {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}

.chat-header small {
    color: var(--text-muted);
    font-size: 0.75rem;
}

#close-chat {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

#close-chat:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.chat-body {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) transparent;
}

.chat-body::-webkit-scrollbar {
    width: 5px;
}

.chat-body::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

.chat-msg {
    max-width: 80%;
    padding: 14px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    line-height: 1.5;
    animation: chatMsgFade 0.4s ease forwards;
}

@keyframes chatMsgFade {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-msg.visitor {
    background: var(--accent-color);
    color: #000;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.chat-msg.admin,
.chat-msg.ai {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    align-self: flex-start;
    border: 1px solid var(--glass-border);
    border-bottom-left-radius: 5px;
}

.chat-footer {
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    gap: 12px;
    border-top: 1px solid var(--glass-border);
}

.chat-footer input {
    flex: 1;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 14px 20px;
    border-radius: 14px;
    outline: none;
    font-family: inherit;
    transition: var(--transition);
}

.chat-footer input:focus {
    border-color: var(--accent-color);
    background: rgba(0, 0, 0, 0.6);
}

.chat-footer button {
    background: var(--accent-color);
    color: #000;
    border: none;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.chat-footer button:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 5px 15px var(--accent-glow);
}

.chat-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    color: #000;
    border: none;
    border-radius: 22px;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 15px 35px var(--accent-glow);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    transform: rotate(-5deg);
}

.chat-toggle:hover {
    transform: scale(1.1) rotate(0deg);
}

.chat-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4757;
    color: #fff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 800;
    border: 3px solid var(--bg-color);
}

/* Custom indicator for Chat */
.online-indicator {
    width: 12px;
    height: 12px;
    background: #4CAF50;
    border-radius: 50%;
    position: relative;
}

.online-indicator::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 16px;
    height: 16px;
    background: rgba(76, 175, 80, 0.4);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries Refinement */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 1024px) {
    header {
        padding: 1rem 5%;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding-top: 100px;
    }

    .hero-content {
        order: 2;
        padding-left: 0;
        text-align: center;
    }

    .hero-image {
        order: 1;
        justify-content: center;
    }

    .hero-image img {
        width: 70%;
        max-width: 400px;
        margin-left: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .vision-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .vision-card {
        padding: 3rem;
    }
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    #nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1000;
        box-shadow: -15px 0 40px rgba(0, 0, 0, 0.6);
        border-left: 1px solid var(--glass-border);
    }

    #nav-menu.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    nav ul li a {
        font-size: 1.1rem;
        letter-spacing: 3px;
    }

    .lang-switcher {
        bottom: 25px;
        left: 20px;
        transform: none;
        padding: 8px;
        gap: 8px;
        width: auto;
        max-width: 400px;
        justify-content: flex-start;
    }

    .lang-switcher.collapsed {
        max-width: 50px;
        padding: 6px;
    }

    .lang-btn {
        width: 38px;
        height: 38px;
        font-size: 0.7rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    section {
        padding: 8rem 5%;
    }
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 1rem;
    }

    .hero {
        padding-top: 60px;
        min-height: auto;
        padding-bottom: 4rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .hero-image img {
        width: 85%;
        max-width: 320px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
    }

    .mission-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .mission-item i {
        margin-bottom: 1rem;
    }

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

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

    .inquiry-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .inquiry-form-card {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr !important;
    }

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

    .chat-widget {
        width: calc(100% - 30px);
        right: 15px;
        bottom: 90px;
    }

    .footer-wrap {
        padding-top: 6rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        display: none;
    }

    header {
        padding: 0.8rem 15px;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 8px 16px;
        letter-spacing: 2px;
    }

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

    .section-header h2 {
        font-size: 1.8rem;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .mission-item h4 {
        font-size: 1.1rem;
    }

    .product-info {
        padding: 2rem;
    }

    .product-info h3 {
        font-size: 1.5rem;
    }

    .contact-premium-card {
        padding: 1.2rem;
        flex-direction: column;
        text-align: center;
    }

    .contact-avatar {
        margin: 0 auto;
    }

    .footer-logo-container {
        margin-bottom: 3rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-links a {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}