/* ============================================
   UNIAXIS GLOBAL TRADE PRIVATE LIMITED
   Corporate Website Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    --primary-color: #10233b;
    --primary-dark: #0a1a30;
    --primary-light: #1f4d78;
    --secondary-color: #38bdf8;
    --accent-color: #f59e0b;
    --text-dark: #172433;
    --text-muted: #556575;
    --text-light: #8f9bb3;
    --bg-light: #eff7ff;
    --bg-white: #ffffff;
    --border-color: #d4e3f5;
    --success-color: #22c55e;
    --warning-color: #f97316;
    --gradient-primary: linear-gradient(135deg, #10233b 0%, #1f4d78 100%);
    --gradient-accent: linear-gradient(135deg, #38bdf8 0%, #60a5fa 100%);
    --gradient-warm: linear-gradient(135deg, #f59e0b 0%, #fb923c 100%);
    --shadow-sm: 0 1px 4px rgba(16, 35, 59, 0.08);
    --shadow-md: 0 6px 15px rgba(16, 35, 59, 0.12);
    --shadow-lg: 0 10px 30px rgba(16, 35, 59, 0.15);
    --shadow-xl: 0 20px 50px rgba(16, 35, 59, 0.18);
    --transition-fast: 0.18s ease;
    --transition-normal: 0.28s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-color);
}

/* Utility Classes */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-white { color: #fff !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-light { background-color: var(--bg-light) !important; }
.bg-gradient { background: var(--gradient-primary) !important; }

.section-padding {
    padding: 100px 0;
}

.section-padding-sm {
    padding: 60px 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header .badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(56, 189, 248, 0.12);
    color: var(--secondary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #38bdf8 0%, #7c3aed 100%);
    color: #fff;
    box-shadow: 0 6px 18px rgba(56, 189, 248, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.3);
    color: #fff;
}

.btn-secondary {
    background: #fff;
    color: var(--primary-color);
    border: 2px solid rgba(56, 189, 248, 0.35);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: #10233b;
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--primary-color);
    border-color: #fff;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    background: var(--bg-white);
    padding: 15px 0;
    transition: all var(--transition-normal);
    box-shadow: none;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    height: 45px;
    width: auto;
}

.navbar-brand .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.navbar-brand .brand-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.navbar-brand .brand-tagline {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px 20px !important;
    transition: color var(--transition-fast);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color);
}

.navbar-toggler {
    border: none;
    padding: 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 28px;
    height: 20px;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    left: 0;
    transition: all var(--transition-normal);
}

.navbar-toggler-icon::before {
    top: 0;
}

.navbar-toggler-icon span {
    top: 50%;
    transform: translateY(-50%);
}

.navbar-toggler-icon::after {
    bottom: 0;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #10233b 0%, #1f4d78 55%, rgba(245, 158, 11, 0.22) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 50px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='[w3.org](http://www.w3.org/2000/svg)'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.22) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--accent-color);
}

.hero-title {
    color: #fff;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(16, 35, 59, 0.18);
    animation: float 12s ease-in-out infinite;
}

.hero-image-decor {
    position: absolute;
    border-radius: 50%;
    opacity: 0.55;
    pointer-events: none;
}

.hero-image-decor-blue {
    width: 120px;
    height: 120px;
    background: rgba(56, 189, 248, 0.24);
    top: -20px;
    left: -20px;
}

.hero-image-decor-orange {
    width: 90px;
    height: 90px;
    background: rgba(245, 158, 11, 0.35);
    bottom: 20px;
    right: -20px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
}

.hero-stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #10233b 0%, #1f4d78 55%, rgba(245, 158, 11, 0.25) 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='[w3.org](http://www.w3.org/2000/svg)'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    margin-bottom: 15px;
}

.breadcrumb {
    justify-content: center;
    margin-bottom: 0;
    background: transparent;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.95);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* About Preview Section */
.about-preview {
    background: var(--bg-light);
}

/* Page Intro */
.page-intro {
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.15);
    border-radius: 24px;
}

.page-intro .section-badge {
    display: inline-flex;
    padding: 8px 20px;
    background: rgba(56, 189, 248, 0.12);
    color: var(--secondary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.page-intro h2 {
    margin-bottom: 20px;
    font-size: clamp(2rem, 4vw, 2.75rem);
}

.page-intro p {
    color: var(--text-muted);
    max-width: 580px;
    margin-bottom: 25px;
}

.page-intro-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: #fff;
    position: relative;
}

.page-intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.page-intro-image::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.18);
    top: 16px;
    right: 16px;
}

.page-intro-image::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.18);
    bottom: 16px;
    left: 16px;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 320px;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100px;
    height: 100px;
    background: rgba(56, 189, 248, 0.18);
    border-radius: 50%;
    z-index: 9;
}

.about-image::before {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: rgba(245, 158, 11, 0.2);
    border-radius: 50%;
    z-index: 9;
    display: none;
}

.about-image img {
    position: relative;
    z-index: 2;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #38bdf8 0%, #60a5fa 100%);
    color: #fff;
    padding: 25px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 9;
}

.about-badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge-text {
    font-size: 0.85rem;
    opacity: 0.95;
}

.about-content {
    padding-left: 40px;
}

.product-image {
    position: relative;
    height: 200px;
    background: linear-gradient(180deg, rgba(56, 189, 248, 0.15) 0%, rgba(245, 158, 11, 0.12) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image i {
    font-size: 4rem;
    color: #2563eb;
    opacity: 0.9;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.18), rgba(251, 146, 60, 0.18));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #2563eb;
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #38bdf8 0%, #7c3aed 100%);
    color: #fff;
    transform: scale(1.1);
}

.stats-section {
    background: linear-gradient(135deg, #1f4d78 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.cta-content {
    background: linear-gradient(135deg, #38bdf8 0%, #7c3aed 100%);
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.about-content .section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(49, 130, 206, 0.1);
    color: var(--secondary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(49, 130, 206, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.about-feature h5 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.about-feature p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Products Section */
.product-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    height: 100%;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    position: relative;
    height: 200px;
    background: linear-gradient(180deg, rgba(56, 189, 248, 0.15) 0%, rgba(245, 158, 11, 0.12) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.12);
    top: -30px;
    right: -20px;
}

.product-image::after {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.18);
    bottom: -20px;
    left: -20px;
}

.product-image i {
    font-size: 4rem;
    color: #10233b;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-body {
    padding: 25px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-price span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Why Choose Us */
.feature-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    transition: all var(--transition-normal);
    height: 100%;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(49, 130, 206, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--secondary-color);
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    color: #fff;
    transform: scale(1.1);
}

.feature-card h4 {
    margin-bottom: 15px;
}

.feature-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Statistics Section */
.stats-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='[w3.org](http://www.w3.org/2000/svg)'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #fff;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    background: var(--bg-light);
    position: relative;
}

.cta-content {
    background: var(--gradient-primary);
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Contact Section */
.contact-info-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    border: 1px solid rgba(56, 189, 248, 0.15);
    transition: all var(--transition-normal);
    box-shadow: 0 15px 40px rgba(16, 35, 59, 0.06);
}

.contact-form-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    border: 1px solid rgba(56, 189, 248, 0.15);
    box-shadow: 0 20px 50px rgba(16, 35, 59, 0.08);
}

.map-wrapper {
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(56, 189, 248, 0.12);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(16, 35, 59, 0.06);
}

.map-placeholder {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--text-dark);
}

.map-placeholder i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.map-placeholder p {
    font-size: 1.05rem;
    font-weight: 600;
}

.map-placeholder small {
    color: var(--text-muted);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-lg);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: rgba(49, 130, 206, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.contact-info-card h4 {
    margin-bottom: 10px;
}

.contact-info-card p {
    margin-bottom: 0;
}

.contact-info-card a {
    color: var(--secondary-color);
}

.contact-form-wrapper {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-control,
.form-select {
    padding: 14px 20px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.15);
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

/* Map Section */
.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    color: var(--text-muted);
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--secondary-color);
}

/* About Page Sections */
.values-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    transition: all var(--transition-normal);
    height: 100%;
    border: 1px solid var(--border-color);
}

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

.values-icon {
    width: 70px;
    height: 70px;
    background: rgba(49, 130, 206, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.company-info-box {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.company-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.company-info-item:last-child {
    border-bottom: none;
}

.company-info-label {
    font-weight: 600;
    color: var(--text-dark);
    min-width: 120px;
}

.company-info-value {
    color: var(--text-muted);
    word-break: break-word;
}

/* Product Filters */
.product-filters {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 10px 24px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.search-box {
    position: relative;
}

.search-box input {
    padding-left: 50px;
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

/* Legal Pages */
.legal-content {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 50px;
    box-shadow: var(--shadow-sm);
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.legal-content h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-content ul {
    padding-left: 25px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 10px;
    color: var(--text-muted);
}

.legal-content p {
    text-align: justify;
}

.legal-sidebar {
    position: sticky;
    top: 100px;
}

.legal-nav {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
}

.legal-nav h5 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.legal-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-nav li {
    margin-bottom: 10px;
}

.legal-nav a {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    transition: all var(--transition-fast);
}

.legal-nav a:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 80px;
}

.footer-brand {
    margin-bottom: 25px;
}

.footer-brand h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-company-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.footer-company-info p {
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-company-info p:last-child {
    margin-bottom: 0;
}

.footer-company-info strong {
    color: rgba(255, 255, 255, 0.9);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer h5 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 8px;
}

.footer-links a i {
    font-size: 0.7rem;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.footer-links a:hover i {
    opacity: 1;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

.footer-contact-text h6 {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.footer-contact-text p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.footer-contact-text a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-text a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 60px;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .hero-stats {
        gap: 30px;
    }
    
    .about-content {
        padding-left: 20px;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .hero-section {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .about-badge {
        right: 20px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        padding: 60px 40px;
    }
    
    .legal-sidebar {
        margin-top: 40px;
    }
    
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .hero-stat {
        text-align: center;
    }
    
    .page-header {
        padding: 120px 0 60px;
    }
    
    .navbar-brand .brand-text {
        display: none;
    }
    
    .cta-content {
        padding: 50px 30px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .legal-content {
        padding: 30px 20px;
    }
    
    .footer {
        padding-top: 60px;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        gap: 15px;
    }
}

@media (max-width: 575px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 18px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .product-filters {
        padding: 20px;
    }
    
    .filter-group {
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
        text-align: center;
    }
}

/* Loading Animation */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-color);
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form Success/Error States */
.form-message {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: none;
}

.form-message.success {
    background: rgba(56, 161, 105, 0.1);
    border: 1px solid var(--success-color);
    color: var(--success-color);
    display: block;
}

.form-message.error {
    background: rgba(229, 62, 62, 0.1);
    border: 1px solid #e53e3e;
    color: #e53e3e;
    display: block;
}

/* Product Modal Styles */
.modal-content {
    border-radius: 16px;
    border: none;
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
    padding: 25px 30px;
}

.modal-body {
    padding: 30px;
}

.modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 20px 30px;
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .back-to-top,
    .btn {
        display: none !important;
    }
    
    .page-header {
        background: #333 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}
