/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #F5DEB3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    color: #000;
}

h2 {
    font-size: 2.5rem;
    color: #000;
}

h3 {
    font-size: 1.8rem;
    color: #000;
}

h4 {
    font-size: 1.4rem;
    color: #000;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.8rem;
    color: #000;
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #d4af37;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    border-radius: 4px;
}

.btn-primary {
    background: #d4af37;
    color: #fff;
}

.btn-primary:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #000;
    border: 2px solid #000;
}

.btn-secondary:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #000;
    border: 1px solid #000;
    padding: 8px 20px;
}

.btn-outline:hover {
    background: #000;
    color: #fff;
}

.btn-white {
    background: #fff;
    color: #000;
    border: 1px solid #fff;
}

.btn-white:hover {
    background: #000;
    color: #fff;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    background: linear-gradient(rgba(0, 32, 96, 0.8), rgba(0, 32, 96, 0.8)), url('images/hero-leather.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    pointer-events: none;
}

.hero-logo {
    width: 300px;
    height: 300px;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-headline {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #FFDAB9;
}

.hero-subheading {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: #f5f5f5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 120px 0 60px;
    text-align: center;
    margin-top: 80px;
}

.page-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    color: #666;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Intro Section */
.intro {
    padding: 80px 0;
    background: #fff;
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.stat h3 {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.stat p {
    font-weight: 500;
    color: #666;
}

/* Product Categories */
.product-categories {
    padding: 80px 0;
    background: #f8f8f8;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.category-image {
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.category-content {
    padding: 2rem;
}

.category-content h3 {
    margin-bottom: 1rem;
}

.category-content p {
    margin-bottom: 1.5rem;
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
    background: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.product-type {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.product-moq {
    color: #d4af37;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.product-customization {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.product-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-buttons .btn {
    flex: 1;
    min-width: 120px;
}

/* Certifications Highlight */
.certifications-highlight {
    padding: 80px 0;
    background: #f8f8f8;
}

.cert-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.cert-badge {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.cert-badge:hover {
    transform: translateY(-5px);
}

.cert-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
}

.cert-badge p {
    font-weight: 500;
    color: #333;
}

/* Export Markets */
.export-markets {
    padding: 80px 0;
    background: #fff;
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.market-region {
    text-align: center;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.market-region:hover {
    transform: translateY(-5px);
}

.market-region h3 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.export-message {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.export-message p {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
}

.direct-communication {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #3E2723 !important;
    margin-top: 1rem !important;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-secondary {
    background: #fff;
    color: #d4af37;
    border-color: #fff;
}

.cta-section .btn-secondary:hover {
    background: #333;
    color: #fff;
    border-color: #333;
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #d4af37;
}

.footer-section a[href^="mailto:"]:hover {
    color: #4CAF50;
}

.footer-section a[href^="https://wa.me"]:hover {
    color: #25D366;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Catalog Download */
.catalog-download {
    margin-top: 1rem;
    text-align: center;
}

.catalog-download .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.download-icon {
    font-size: 1.2em;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* About Page Styles */
.company-overview {
    padding: 80px 0;
    background: #fff;
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-image img {
    width: 100%;
    border-radius: 8px;
}

.experience-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.experience-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.experience-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.quality-commitment {
    padding: 80px 0;
    background: #fff;
}

.quality-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quality-list {
    list-style: none;
    margin-top: 2rem;
}

.quality-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.quality-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.quality-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.quality-stat {
    text-align: center;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.quality-stat h3 {
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.global-focus {
    padding: 80px 0;
    background: #f8f8f8;
}

.global-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.global-image img {
    width: 100%;
    border-radius: 8px;
}

.global-highlights {
    margin-top: 2rem;
}

.highlight-item {
    margin-bottom: 1.5rem;
}

.highlight-item h4 {
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.values-section {
    padding: 80px 0;
    background: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.team-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

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

.member-title {
    color: #d4af37;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.member-desc {
    font-size: 0.9rem;
    color: #666;
}

/* Products Page Styles */
.product-categories {
    padding: 40px 0;
    background: #fff;
}

.categories-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 20px;
    background: #f8f8f8;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
    background: #d4af37;
    color: #fff;
}

.products-showcase {
    padding: 60px 0;
    background: #f8f8f8;
}

.product-details {
    padding: 80px 0;
    background: #fff;
}

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

.spec-list {
    list-style: none;
    margin-top: 2rem;
}

.spec-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.spec-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.details-features {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 8px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-icon {
    color: #d4af37;
    margin-right: 1rem;
    font-weight: bold;
}

.customization-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.customization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.custom-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.custom-card:hover {
    transform: translateY(-5px);
}

.custom-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Manufacturing Page Styles */
.manufacturing-overview {
    padding: 80px 0;
    background: #fff;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.stat-item h3 {
    color: #d4af37;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.artisans-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.artisans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.artisan-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.artisan-image {
    height: 200px;
    overflow: hidden;
}

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

.artisan-info {
    padding: 1.5rem;
}

.artisans-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2rem;
    margin-right: 1rem;
}

.feature-content h4 {
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.quality-control {
    padding: 80px 0;
    background: #fff;
}

.quality-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.quality-step {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #d4af37;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.quality-standards {
    margin-top: 3rem;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.standard-item {
    padding: 1.5rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.standard-item h4 {
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.leather-sourcing {
    padding: 80px 0;
    background: #f8f8f8;
}

.sourcing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.sourcing-highlights {
    margin-top: 2rem;
}

.leather-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.leather-type {
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
}

.leather-type h4 {
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.oem-section {
    padding: 80px 0;
    background: #fff;
}

.oem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    text-align: center;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.process-steps {
    margin-top: 2rem;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.step-icon {
    font-size: 2rem;
    color: #d4af37;
}

.production-capacity {
    padding: 80px 0;
    background: #f8f8f8;
}

.capacity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.capacity-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.capacity-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.capacity-item h3 {
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.capability-item {
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
}

.packaging-section {
    padding: 80px 0;
    background: #fff;
}

.packaging-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.packaging-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.packaging-item {
    text-align: center;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.packaging-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.prep-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.prep-item {
    padding: 1rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.prep-item h4 {
    color: #d4af37;
    margin-bottom: 0.5rem;
}

/* Certifications Page Styles */
.certifications-intro {
    padding: 80px 0;
    background: #fff;
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-image img {
    width: 100%;
    border-radius: 8px;
}

.iso-certifications {
    padding: 80px 0;
    background: #f8f8f8;
}

.iso-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.iso-card {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.iso-card:hover {
    transform: translateY(-5px);
}

.iso-icon {
    width: 80px;
    height: 80px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
    margin: 0 auto 1rem;
}

.iso-features {
    list-style: none;
    margin: 1rem 0;
}

.iso-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.iso-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
}

.cert-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.status-active {
    color: #28a745;
    font-weight: bold;
}

.cert-number {
    color: #666;
    font-size: 0.9rem;
}

.reach-compliance {
    padding: 80px 0;
    background: #fff;
}

.reach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.reach-highlights {
    margin-top: 2rem;
}

.reach-standards {
    margin-top: 2rem;
}

.standards-list {
    display: grid;
    gap: 1rem;
}

.standard-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.standard-icon {
    color: #d4af37;
    font-weight: bold;
    flex-shrink: 0;
}

.ethical-sourcing {
    padding: 80px 0;
    background: #f8f8f8;
}

.ethical-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.principle-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-5px);
}

.principle-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cert-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.cert-badge {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
    margin: 0 auto 1rem;
}

.sustainable-practices {
    padding: 80px 0;
    background: #fff;
}

.sustainable-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.initiative-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.initiative-icon {
    font-size: 2rem;
    color: #d4af37;
    flex-shrink: 0;
}

.initiative-content h4 {
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.sustainability-metrics {
    margin-top: 2rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.metric-item {
    text-align: center;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.metric-item h3 {
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.quality-assurance {
    padding: 80px 0;
    background: #f8f8f8;
}

.qa-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.qa-steps {
    margin-top: 2rem;
}

.qa-step {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
}

.qa-standards {
    margin-top: 2rem;
}

.certification-documents {
    padding: 80px 0;
    background: #fff;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.document-card {
    text-align: center;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.document-card:hover {
    transform: translateY(-5px);
}

.doc-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Export Markets Page Styles */
.world-map-section {
    padding: 80px 0;
    background: #fff;
}

.map-content {
    text-align: center;
}

.map-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.world-map {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.map-container {
    position: relative;
}

.map-image {
    width: 100%;
    border-radius: 8px;
}

.map-markers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.map-marker {
    position: absolute;
    cursor: pointer;
}

.map-marker .marker-dot {
    width: 20px;
    height: 20px;
    background: #d4af37;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

.map-marker .marker-label {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.export-regions {
    padding: 80px 0;
    background: #f8f8f8;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.region-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.region-card:hover {
    transform: translateY(-5px);
}

.region-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f8f8;
}

.region-icon {
    font-size: 2rem;
}

.region-content {
    padding: 1.5rem;
}

.countries-list {
    margin: 1rem 0;
}

.countries-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.countries-list li {
    padding: 0.25rem 0;
    color: #666;
}

.region-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.client-types {
    padding: 80px 0;
    background: #fff;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.client-card {
    text-align: center;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
}

.client-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.client-features {
    text-align: left;
    margin-top: 1rem;
}

.client-features ul {
    list-style: none;
}

.client-features li {
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
}

.client-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #d4af37;
}

.export-capabilities {
    padding: 80px 0;
    background: #f8f8f8;
}

.capabilities-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.capability-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.capability-item:hover {
    transform: translateY(-5px);
}

.capability-icon {
    font-size: 2rem;
    color: #d4af37;
    flex-shrink: 0;
}

.capability-content h3 {
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.trade-terms {
    padding: 80px 0;
    background: #fff;
}

.trade-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.trade-terms-grid {
    display: grid;
    gap: 2rem;
}

.trade-term {
    padding: 1.5rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.trade-term h3 {
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.payment-terms {
    margin-top: 2rem;
}

.payment-options {
    display: grid;
    gap: 1rem;
}

.payment-option {
    padding: 1rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.payment-option h4 {
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.export-stats {
    padding: 80px 0;
    background: #f8f8f8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    color: #d4af37;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.export-message {
    padding: 80px 0;
    background: #fff;
}

.message-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.message-content h2 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.message-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.highlight-item h4 {
    color: #d4af37;
    margin-bottom: 0.5rem;
}

/* Contact Page Styles */
.contact-intro {
    padding: 80px 0;
    background: #fff;
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-image img {
    width: 100%;
    border-radius: 8px;
}

.response-time {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.time-icon {
    font-size: 2rem;
    color: #d4af37;
}

.contact-form-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    transition: border-color 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #d4af37;
    border-color: #d4af37;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: bold;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.contact-info {
    padding: 80px 0;
    background: #fff;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-method {
    text-align: center;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-method h3 {
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.method-desc {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Contact Person Styles */
.contact-person {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #002060 0%, #003399 100%);
    border-radius: 15px;
    margin-top: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 32, 96, 0.2);
    transition: transform 0.3s ease;
}

.contact-person:hover {
    transform: translateY(-5px);
}

.contact-person h3 {
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.person-details h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 500;
}

.person-details p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.person-desc {
    font-size: 0.95rem;
    color: #FFDAB9;
    margin-top: 1rem;
    font-style: italic;
}

.office-details {
    padding: 80px 0;
    background: #f8f8f8;
}

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

.office-address,
.office-hours,
.office-team {
    margin-bottom: 2rem;
}

.office-address h3,
.office-hours h3,
.office-team h3 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.office-map img {
    width: 100%;
    border-radius: 8px;
}

.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e8e8e8;
}

.faq-question h3 {
    margin: 0;
    color: #333;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #d4af37;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.response-time-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.response-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.response-icon {
    font-size: 4rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.response-content h2 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.response-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
}

.feature-icon {
    font-size: 1.5rem;
    color: #d4af37;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-subheading {
        font-size: 1.1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .intro-content,
    .overview-content,
    .quality-content,
    .global-content,
    .details-content,
    .sourcing-content,
    .oem-content,
    .capacity-content,
    .packaging-content,
    .intro-content.contact,
    .office-content,
    .trade-content,
    .reach-content,
    .ethical-content,
    .sustainable-content,
    .qa-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .form-actions {
        flex-direction: column;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .categories-grid,
    .products-grid,
    .cert-badges,
    .markets-grid,
    .values-grid,
    .team-grid,
    .regions-grid,
    .client-grid,
    .stats-grid,
    .contact-methods {
        grid-template-columns: 1fr;
    }

    .countries-list ul {
        grid-template-columns: 1fr;
    }

    .intro-stats,
    .quality-stats {
        flex-direction: row;
        justify-content: space-between;
    }

    .categories-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }

    .tab-btn {
        margin: 0.25rem;
    }

    .page-header {
        padding: 100px 0 40px;
        margin-top: 80px;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }

    .contact-form-container {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }

    .hero-subheading {
        font-size: 1rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .nav-container {
        height: 70px;
    }

    .page-header {
        margin-top: 70px;
    }

    .intro-stats,
    .quality-stats {
        flex-direction: column;
    }

    .stat {
        margin-bottom: 1rem;
    }

    .btn-large {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: #d4af37;
    color: #fff;
}

/* Focus Styles */
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Print Styles */
@media print {
    .navbar,
    .hamburger,
    .cta-section,
    footer {
        display: none;
    }

    .page-header {
        margin-top: 0;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    h1, h2, h3 {
        page-break-after: avoid;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}

/* Form Validation Styles */
.form-group input.error,
.form-group textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

/* Loading state */
button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Enhanced form validation styles */
.form-group {
    position: relative;
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    background-color: #fff5f5;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    outline: none;
}

/* Error message styles */
.form-group .error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

/* Required field indicator */
.form-group label::after {
    content: ' *';
    color: #dc3545;
}

.form-group label:not([for="newsletter"])::after {
    content: ' *';
    color: #dc3545;
}

.form-group label[for="newsletter"]::after {
    content: '';
}

/* Enhanced notification styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: slideIn 0.3s ease;
    max-width: 400px;
}

.notification.success {
    background: #28a745;
}

.notification.error {
    background: #dc3545;
}

.notification.info {
    background: #17a2b8;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}