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

html {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Prevent horizontal overflow */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

* {
    box-sizing: border-box;
}

/* Ensure text doesn't break layouts */
h1, h2, h3, h4, h5, h6, p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.nav-logo h2 {
    color: #2563eb;
    font-weight: 700;
    font-size: 1.8rem;
    text-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}

.nav-logo h2 a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #2563eb;
    transition: all 0.3s ease;
}

.nav-logo h2 a:hover {
    transform: translateY(-1px);
}

.nav-logo h2 a i {
    color: #2563eb !important;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.3));
}

.nav-logo h2 a:hover i {
    transform: rotate(15deg) scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.4));
}

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

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

.nav-link:hover {
    color: #2563eb;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    transition: width 0.3s ease;
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background: #2563eb;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%232563eb" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

.btn {
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) rotateX(2deg);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn i {
    transition: all 0.3s ease;
}

.btn:hover i {
    transform: scale(1.1);
}

.btn-primary {
    background: linear-gradient(145deg, #2563eb, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 
        0 12px 30px rgba(37, 99, 235, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-4px) scale(1.02);
    box-shadow: 
        0 18px 45px rgba(37, 99, 235, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: linear-gradient(145deg, #ffffff, #f1f5f9);
    color: #2563eb;
    border: 2px solid #2563eb;
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: linear-gradient(145deg, #2563eb, #3b82f6);
    color: white;
    transform: perspective(1000px) rotateX(0deg) translateY(-4px) scale(1.02);
    box-shadow: 
        0 18px 45px rgba(37, 99, 235, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: #3b82f6;
}

.btn-small {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) rotateX(1deg);
}

.btn-small.btn-primary {
    background: linear-gradient(145deg, #2563eb, #3b82f6);
    color: white;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-small.btn-primary:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.btn-small.btn-secondary {
    background: linear-gradient(145deg, #f1f5f9, #e2e8f0);
    color: #64748b;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.btn-small.btn-secondary:hover {
    background: linear-gradient(145deg, #ef4444, #dc2626);
    color: white;
    transform: perspective(1000px) rotateX(0deg) translateY(-2px);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    animation: slideInRight 1s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trading-interface {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.trading-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    pointer-events: none;
}

.orbit-ring {
    position: absolute;
    border: 2px solid rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.ring-1 {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    animation-duration: 30s;
}

.ring-2 {
    width: 75%;
    height: 75%;
    top: 12.5%;
    left: 12.5%;
    animation-duration: 25s;
    animation-direction: reverse;
}

.ring-3 {
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
    animation-duration: 20s;
}

.price-card {
    position: absolute;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.6);
    min-width: 160px;
    animation: floatPrice 8s ease-in-out infinite;
    transform-style: preserve-3d;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.price-card:hover {
    transform: perspective(1000px) rotateY(10deg) rotateX(5deg) translateZ(20px) scale(1.05);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}



.card-1 {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
    background: linear-gradient(145deg, #ffffff, #f0f9ff);
}

.card-2 {
    top: 45%;
    left: 5%;
    animation-delay: 2s;
    background: linear-gradient(145deg, #ffffff, #fef3c7);
}

.card-3 {
    bottom: 15%;
    right: 15%;
    animation-delay: 4s;
    background: linear-gradient(145deg, #ffffff, #f0fdf4);
}

.card-4 {
    bottom: 40%;
    left: 25%;
    animation-delay: 6s;
    background: linear-gradient(145deg, #ffffff, #fef2f2);
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.metal-type {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.5px;
}

.change {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.change::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}

.change.positive {
    background: #dcfce7;
    color: #16a34a;
}

.change.positive::before {
    border-bottom: 6px solid #16a34a;
}

.change.negative {
    background: #fef2f2;
    color: #dc2626;
}

.change.negative::before {
    border-top: 6px solid #dc2626;
}

.change.neutral {
    background: #f1f5f9;
    color: #64748b;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.25rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.price-unit {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

@keyframes floatPrice {
    0%, 100% {
        transform: translateY(0px) rotateZ(0deg);
    }
    25% {
        transform: translateY(-15px) rotateZ(1deg);
    }
    50% {
        transform: translateY(-8px) rotateZ(0deg);
    }
    75% {
        transform: translateY(-20px) rotateZ(-1deg);
    }
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Clean About Section */
.about-clean {
    padding: 4rem 0;
    background: #f8fafc;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.intro-text h3 {
    color: #1e293b;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.intro-text p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.key-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    font-weight: 500;
    font-size: 0.9rem;
}

.feature-item i {
    font-size: 1rem;
}

.intro-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    position: relative;
}

.visual-container {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.central-orb {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    box-shadow: 
        0 20px 40px rgba(37, 99, 235, 0.3),
        0 0 60px rgba(37, 99, 235, 0.2);
    position: relative;
    z-index: 5;
    animation: centralPulse 4s ease-in-out infinite;
}

@keyframes centralPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 20px 40px rgba(37, 99, 235, 0.3),
            0 0 60px rgba(37, 99, 235, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 25px 50px rgba(37, 99, 235, 0.4),
            0 0 80px rgba(37, 99, 235, 0.3);
    }
}

.floating-cards-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 25px;
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.15),
        0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-width: 140px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.floating-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.1);
}

.floating-card .card-icon {
    font-size: 2.5rem;
    color: #2563eb !important;
    transition: transform 0.3s ease;
    margin-bottom: 0.5rem;
}

.floating-card .card-icon * {
    color: #2563eb !important;
}

.floating-card .card-icon i {
    color: #2563eb !important;
    font-size: 2rem;
}

.floating-card:hover .card-icon {
    transform: scale(1.1);
}

.floating-card span {
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
    text-align: center;
}

/* Individual card positioning and animations */
.card-sustainable {
    top: 30px;
    right: 50px;
    animation: floatSustainable 8s ease-in-out infinite;
}

.card-global {
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    animation: floatGlobal 7s ease-in-out infinite 1s;
}

.card-growing {
    bottom: 90px;
    right: 40px;
    animation: floatGrowing 9s ease-in-out infinite 2s;
}

.card-trusted {
    bottom: 70px;
    left: 50px;
    animation: floatTrusted 6s ease-in-out infinite 3s;
}

.card-trusted i {
    color: #2563eb !important;
}

/* Individual floating animations */
@keyframes floatSustainable {
    0%, 100% {
        transform: translateY(0px) rotateZ(0deg);
    }
    25% {
        transform: translateY(-15px) rotateZ(1deg);
    }
    50% {
        transform: translateY(-8px) rotateZ(0deg);
    }
    75% {
        transform: translateY(-20px) rotateZ(-1deg);
    }
}

@keyframes floatGlobal {
    0%, 100% {
        transform: translateY(-50%) translateX(0px) rotateZ(0deg);
    }
    25% {
        transform: translateY(-50%) translateX(-10px) rotateZ(-1deg);
    }
    50% {
        transform: translateY(-50%) translateX(-5px) rotateZ(0deg);
    }
    75% {
        transform: translateY(-50%) translateX(-15px) rotateZ(1deg);
    }
}

@keyframes floatGrowing {
    0%, 100% {
        transform: translateY(0px) rotateZ(0deg);
    }
    33% {
        transform: translateY(-12px) rotateZ(1deg);
    }
    66% {
        transform: translateY(-6px) rotateZ(-1deg);
    }
}

@keyframes floatTrusted {
    0%, 100% {
        transform: translateY(0px) rotateZ(0deg);
    }
    30% {
        transform: translateY(-18px) rotateZ(-1deg);
    }
    60% {
        transform: translateY(-10px) rotateZ(1deg);
    }
}

.stats-section {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
    font-weight: 500;
    font-size: 0.9rem;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mv-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.mv-icon {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.mv-item h4 {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mv-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Responsive Design for Clean About Section */
@media (max-width: 768px) {
    .about-clean {
        padding: 3rem 0;
    }

    .about-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .intro-text h3 {
        font-size: 1.5rem;
    }

    .key-features {
        justify-content: center;
        gap: 1.5rem;
    }

    .intro-visual {
        height: 300px;
    }

    .visual-container {
        width: 280px;
        height: 280px;
    }

    .central-orb {
        width: 80px;
        height: 80px;
    }

    .floating-card {
        padding: 1.5rem 1rem;
        min-width: 100px;
    }

    .floating-card .card-icon {
        font-size: 2rem;
        color: #2563eb;
    }

    .floating-card span {
        font-size: 0.9rem;
    }

    .card-sustainable {
        top: 15px;
        right: 25px;
    }

    .card-global {
        left: 5px;
    }

    .card-growing {
        bottom: 60px;
        right: 15px;
    }

    .card-trusted {
        bottom: 40px;
        left: 25px;
    }

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

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

    .stats-section {
        padding: 2rem;
        margin: 0 1rem 3rem;
    }

    .mv-item {
        padding: 1.5rem;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .about-clean {
        padding: 2rem 0;
    }

    .intro-text h3 {
        font-size: 1.3rem;
    }

    .key-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .intro-visual {
        height: 250px;
    }

    .visual-container {
        width: 220px;
        height: 220px;
    }

    .central-orb {
        width: 60px;
        height: 60px;
    }

    .floating-card {
        padding: 1.25rem 1rem;
        min-width: 90px;
        border-radius: 15px;
    }

    .floating-card .card-icon {
        font-size: 1.8rem;
        color: #2563eb;
    }

    .floating-card span {
        font-size: 0.8rem;
    }

    .card-sustainable {
        top: 10px;
        right: 20px;
    }

    .card-global {
        left: 10px;
    }

    .card-growing {
        bottom: 50px;
        right: 10px;
    }

    .card-trusted {
        bottom: 30px;
        left: 20px;
    }

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

    .stats-section {
        padding: 1.5rem;
        margin: 0 0.5rem 2rem;
    }

    .mv-item {
        padding: 1.25rem;
        margin: 0 0.5rem;
    }

    .mv-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: white;
}

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

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

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

.service-card h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    color: #64748b;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* Process Section */
.process {
    padding: 6rem 0;
    background: #f8fafc;
}

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

.process-step {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 2rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-content h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
    margin-top: 1rem;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Sustainability Section */
.sustainability {
    padding: 6rem 0;
    background: white;
}

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

.sustainability-content h3 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.sustainability-content p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.impact-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.metric {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.sustainability-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.feature-icon {
    font-size: 2rem;
    margin-top: 0.5rem;
}

.feature-item h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #f8fafc;
}

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

.contact-info h3 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.contact-item h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1e293b;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(145deg, #f8fafc, #ffffff);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateX(1deg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    background: linear-gradient(145deg, #ffffff, #eff6ff);
    box-shadow: 
        0 0 0 4px rgba(37, 99, 235, 0.15),
        inset 0 2px 4px rgba(37, 99, 235, 0.05),
        0 8px 25px rgba(37, 99, 235, 0.1);
    transform: perspective(1000px) rotateX(0deg) translateY(-2px);
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: #1e293b;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: #2563eb;
    width: 16px;
    text-align: center;
}

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

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: #60a5fa;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section h4 {
    color: #e2e8f0;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #60a5fa;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #94a3b8;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.1);
}

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

.footer-bottom a {
    color: #60a5fa;
    text-decoration: none;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes heartPulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 8px #ffb6c1, 1px 1px 2px rgba(0,0,0,0.2);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 12px #ffb6c1, 0 0 20px rgba(255, 182, 193, 0.4), 1px 1px 2px rgba(0,0,0,0.2);
    }
}

/* Heart icon hover effect */
.heart-icon:hover {
    animation-duration: 0.6s;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-container {
        gap: 3rem;
    }

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

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

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

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

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Prevent body scroll when menu is open */
    body.nav-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

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

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }

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

    .hero-visual {
        height: 300px;
        margin-top: 1rem;
    }

    .trading-background {
        width: 250px;
        height: 250px;
    }

    .price-card {
        padding: 1rem;
        min-width: 120px;
        border-radius: 15px;
    }

    .card-1 {
        top: 10%;
        right: 5%;
    }

    .card-2 {
        top: 35%;
        left: 0%;
    }

    .card-3 {
        bottom: 10%;
        right: 10%;
    }

    .card-4 {
        bottom: 35%;
        left: 5%;
    }

    .price-value {
        font-size: 1.2rem;
    }

    .metal-type {
        font-size: 0.75rem;
    }

    .change {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }

    .about-grid,
    .sustainability-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-grid,
    .impact-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
        justify-content: center;
    }

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

    .contact-form {
        padding: 2rem;
    }

    .floating-card {
        padding: 1.5rem;
        font-size: 0.9rem;
    }

    .admin-layout {
        flex-direction: column;
    }

    .admin-sidebar {
        width: 100%;
        height: auto;
        padding: 1rem;
    }

    .sidebar-menu {
        flex-direction: row;
        overflow-x: auto;
        padding: 0 1rem;
        gap: 0.5rem;
    }

    .menu-item {
        flex-shrink: 0;
        min-width: 120px;
        padding: 0.75rem 1rem;
        transform: none;
    }

    .menu-item:hover,
    .menu-item.active {
        transform: none;
    }

    .admin-main {
        padding: 1rem;
    }

    .admin-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .hero-buttons {
        gap: 0.75rem;
    }

    .floating-card {
        padding: 1rem;
        font-size: 0.8rem;
    }

    .floating-card h3 {
        font-size: 0.9rem;
    }

    .service-card,
    .process-step {
        padding: 1.5rem 1rem;
    }

    .contact-form {
        padding: 1rem;
        margin: 0 0.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .stats-grid,
    .impact-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .section-header p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .nav-container {
        padding: 0 15px;
    }

    .nav-logo h2 {
        font-size: 1.5rem;
    }

    .nav-logo h2 a i {
        font-size: 1.5rem;
    }

    .contact-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .contact-icon {
        font-size: 1.2rem;
    }

    .testimonial-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

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

/* Admin Link Styling */
.admin-link {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
}

.admin-link:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
}

/* Page Header Styles */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Company Story Styles */
.company-story {
    padding: 6rem 0;
}

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

.story-content h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
}

.story-content p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.timeline {
    margin-top: 3rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.year {
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    margin-right: 1rem;
    min-width: 60px;
    text-align: center;
}

.milestone {
    color: #64748b;
    font-weight: 500;
}

.story-visual {
    position: relative;
}

.mission-card, .vision-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.mission-card {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: #f8fafc;
}

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

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-section {
        padding: 4rem 0;
    }

    .team-member {
        padding: 1.5rem;
        text-align: center;
    }

    .member-photo {
        font-size: 3rem;
        margin-bottom: 0.75rem;
    }
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0, 0,0,0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.team-member h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.position {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 1rem;
}

.bio {
    color: #64748b;
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 6rem 0;
}

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

.value-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: transform 0.3s ease;
}

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

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

.value-item h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Product Categories */
.product-categories {
    padding: 6rem 0;
}

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

.category-image {
    height: 200px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #94a3b8;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

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

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: transform 0.3s ease;
}

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

.category-image {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.category-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.price-range {
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 1rem;
    text-align: center;
}

/* Services Detail */
.services-detail {
    padding: 6rem 0;
    background: #f8fafc;
}

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

.service-detail {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.service-detail h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.features h4 {
    color: #2563eb;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

/* Pricing Calculator */
.pricing-calculator {
    padding: 6rem 0;
}

.calculator-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.calculator-form {
    margin-bottom: 2rem;
}

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

.price-result {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.price-breakdown {
    margin: 1rem 0;
}

.price-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
}

.price-line.total {
    border-top: 2px solid #2563eb;
    margin-top: 1rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: #2563eb;
}

.disclaimer {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
    margin-top: 1rem;
}

/* Blog Styles */
.featured-article {
    padding: 6rem 0;
}

.featured-card {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.featured-badge {
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.featured-content h2 {
    font-size: 2.2rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    color: #64748b;
    font-size: 0.9rem;
}

.featured-image {
    text-align: center;
}

.image-placeholder {
    font-size: 8rem;
    color: #e2e8f0;
}

/* Blog Categories */
.blog-categories {
    padding: 2rem 0;
    background: #f8fafc;
}

.categories-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e2e8f0;
    background: white;
    color: #64748b;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-btn.active,
.category-btn:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

/* Blog Posts */
.blog-posts {
    padding: 4rem 0 6rem;
    background: #f8fafc;
}

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

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: transform 0.3s ease;
}

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

.blog-image {
    height: 200px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #94a3b8;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.blog-content {
    padding: 2rem;
}

.blog-category {
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.blog-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.blog-card p {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

.read-more {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #1d4ed8;
}

/* Newsletter */
.newsletter-signup {
    padding: 6rem 0;
}

.newsletter-card {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
}

.newsletter-disclaimer {
    font-size: 0.9rem;
    margin-top: 1rem;
    opacity: 0.8;
}

/* Contact Styles */
.contact-info-section {
    padding: 6rem 0;
}

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

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-card {
        padding: 1.5rem;
        text-align: center;
    }

    .map-container {
        height: 200px !important;
        margin-top: 0.75rem !important;
    }
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: transform 0.3s ease;
}

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

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

.contact-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.form-intro h2 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.response-times {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.response-times h4 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.response-times ul {
    list-style: none;
}

.response-times li {
    margin-bottom: 0.5rem;
    color: #64748b;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    height: fit-content;
}

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

.form-group {
    margin-bottom: 1rem;
}

.form-group textarea {
    min-height: 60px;
    max-height: 100px;
    resize: vertical;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-form-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .form-intro {
        text-align: center;
        margin: 0 1rem;
    }

    .contact-form-section {
        padding: 3rem 0;
    }

    .response-times {
        padding: 1rem;
        margin-top: 1rem;
    }

    .modal-content {
        margin: 1rem;
        padding: 2rem;
        max-width: calc(100vw - 2rem);
        max-height: calc(100vh - 2rem);
        border-radius: 15px;
    }

    .login-card {
        margin: 1rem;
        padding: 2rem;
        max-width: calc(100vw - 2rem);
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 6rem 0 3rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .contact-form-container {
        margin: 0 0.5rem;
        padding: 1rem;
    }

    .form-intro {
        margin: 0 0.5rem;
    }

    .contact-card {
        margin: 0 0.5rem;
    }
}

/* Regional Offices */
.regional-offices {
    padding: 6rem 0;
}

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

.office-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.office-card h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.office-card p {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: #f8fafc;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.faq-item h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Admin Dashboard Styles - Clean and Minimal */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.login-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.login-card h2 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.login-card h2 i {
    color: #2563eb;
}

.demo-note {
    background: #fef3c7;
    color: #92400e;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: 1rem;
    border: 1px solid #fde68a;
}

.admin-user {
    display: flex;
    align-items: center;
    color: #64748b;
    font-weight: 500;
    gap: 0.5rem;
}

.admin-user i {
    color: #2563eb;
}

.admin-header {
    padding: 3rem 0 2rem;
    background: #1e293b;
    color: white;
    text-align: center;
}

/* Latest Content Sections */
.latest-content {
    padding: 5rem 0;
    background: #f8fafc;
}

.latest-content:nth-child(even) {
    background: white;
}

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

@media (max-width: 768px) {
    .latest-content {
        padding: 3rem 0;
    }

    .latest-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .latest-content {
        padding: 2rem 0;
    }

    .latest-grid {
        gap: 1rem;
        margin-bottom: 2rem;
    }
}

/* Testimonial Cards 3D Styles */
.testimonial-card-3d {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    overflow: hidden;
}

.testimonial-card-3d .card-inner {
    position: relative;
    z-index: 2;
}

.testimonial-card-3d .card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.05));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.testimonial-card-3d .testimonial-rating {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-card-3d .testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-card-3d .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-card-3d .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-card-3d .author-info h4 {
    margin: 0 0 0.25rem 0;
    color: #1e293b;
    font-size: 1.1rem;
}

.testimonial-card-3d .author-info p {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
}

.testimonial-card-3d .author-info .company {
    font-weight: 600;
    color: #2563eb;
}

.latest-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.latest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.latest-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.latest-card h3 a {
    color: inherit;
    text-decoration: none;
}

.latest-card h3 a:hover {
    color: #2563eb;
}

.latest-card .card-meta {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.latest-card .card-category {
    display: inline-block;
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.latest-card .card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 1rem;
}

.section-footer {
    text-align: center;
}

/* Individual Blog Post Page */
.blog-post-article {
    padding: 2rem 0 5rem;
    background: white;
}

.post-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb {
    margin-bottom: 1rem;
    color: #64748b;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #2563eb;
    text-decoration: none;
}

.post-category {
    display: inline-block;
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.post-meta {
    color: #64748b;
    margin-top: 1rem;
}

.post-meta span {
    margin: 0 1rem;
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.post-excerpt {
    font-size: 1.2rem;
    color: #64748b;
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.post-body {
    font-size: 1.1rem;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.post-share a {
    color: #2563eb;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #2563eb;
    border-radius: 5px;
    font-size: 0.9rem;
}

.post-share a:hover {
    background: #2563eb;
    color: white;
}

.related-posts {
    padding: 5rem 0;
    background: #f8fafc;
}

/* Individual Product Detail Page */
.product-detail {
    padding: 2rem 0 5rem;
    background: white;
}

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

.product-images {
    position: sticky;
    top: 2rem;
}

.main-image {
    text-align: center;
}

.product-image-placeholder {
    font-size: 10rem;
    background: #f1f5f9;
    padding: 3rem;
    border-radius: 15px;
    border: 2px dashed #cbd5e1;
}

.product-info h1 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.product-category {
    display: inline-block;
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 2rem;
}

.price-unit {
    font-size: 1.2rem;
    color: #64748b;
}

.product-description, .product-specifications {
    margin-bottom: 2rem;
}

.product-description h3, .product-specifications h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.product-specifications ul {
    list-style: none;
    padding: 0;
}

.product-specifications li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.related-products {
    padding: 5rem 0;
    background: #f8fafc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .latest-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-images {
        position: static;
    }

    .post-navigation {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .post-share {
        flex-wrap: wrap;
        justify-content: center;
    }

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

.admin-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.admin-stats {
    padding: 3rem 0;
    background: #f8fafc;
}

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

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 3rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.stat-change {
    font-size: 0.9rem;
    font-weight: 600;
}

.stat-change.positive {
    color: #10b981;
}

.stat-change.negative {
    color: #ef4444;
}

.stat-change.neutral {
    color: #64748b;
}

/* Admin Layout - Clean and Minimal */
.admin-layout {
    display: flex;
    min-height: calc(100vh - 70px);
    background: #f8fafc;
}

.admin-sidebar {
    width: 260px;
    background: #ffffff;
    border-right: 1px solid #e2e8f0;
    padding: 1rem 0;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1rem;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    color: #64748b;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    width: 100%;
    border-left: 3px solid transparent;
    border-radius: 4px;
}

.menu-item.active {
    background: #f1f5f9;
    color: #2563eb;
    border-left-color: #2563eb;
    font-weight: 600;
}

.menu-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.menu-text {
    font-size: 0.95rem;
    font-weight: 600;
}

.admin-main {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

.admin-content {
    max-width: 1200px;
    margin: 0 auto;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

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

.admin-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.card-header h3 {
    color: #1e293b;
    font-weight: 700;
}

.order-list,
.content-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.order-list::-webkit-scrollbar {
    width: 6px;
}

.order-list::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.order-list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.content-list::-webkit-scrollbar {
    width: 6px;
}

.content-list::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.content-list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

/* Dashboard Overview Styles */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: #2563eb;
    color: white;
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid #e2e8f0;
}

.stat-icon {
    font-size: 2.5rem;
    opacity: 0.9;
}

.stat-icon {
    font-size: 2.5rem;
    opacity: 0.9;
}

.stat-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.stat-info p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

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

.activity-list {
    max-height: 300px;
    overflow-y: auto;
}

.activity-item {
    padding: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.activity-icon {
    background: #eff6ff;
    color: #2563eb;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.activity-details {
    flex: 1;
}

.activity-title {
    font-weight: 500;
    color: #1e293b;
}

.activity-time {
    font-size: 0.8rem;
    color: #64748b;
}

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

.quick-action-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #475569;
}

.action-icon {
    font-size: 1.5rem;
}

/* Status Indicators */
.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
}

.status-indicator.connected .status-dot {
    background: #22c55e;
}

.status-indicator.warning .status-dot {
    background: #f59e0b;
}

.twitter-status {
    padding: 1rem 0;
}

.system-health {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.health-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.health-status {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    background: #ef4444;
    color: white;
}

.health-status.connected {
    background: #22c55e;
}

.health-status.warning {
    background: #f59e0b;
}

/* Filter Section */
.filter-section {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.filter-section select,
.filter-section input {
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9rem;
}

.filter-section input {
    flex: 1;
    min-width: 200px;
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* Categories List */
.categories-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 400px;
    overflow-y: auto;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.category-actions {
    display: flex;
    gap: 0.5rem;
}

/* Calendar Container */
.calendar-container {
    height: 300px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
}

/* Connection Status */
.connection-status {
    margin-bottom: 1.5rem;
}

/* Tweet Preview */
.tweet-preview {
    min-height: 200px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
}

.tweet-card {
    background: white;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.tweet-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.tweet-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.tweet-username {
    font-weight: 600;
    color: #1e293b;
}

.tweet-handle {
    color: #64748b;
    font-size: 0.9rem;
}

.tweet-content {
    color: #1e293b;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.tweet-time {
    color: #64748b;
    font-size: 0.8rem;
}

/* 2FA Setup */
.tfa-setup {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tfa-status {
    padding: 1rem 0;
}

/* Logs Container */
.logs-container {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
}

.log-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
}

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

.log-time {
    color: #64748b;
    margin-right: 1rem;
}

.log-action {
    color: #2563eb;
    margin-right: 1rem;
}

.log-details {
    color: #1e293b;
}

/* Contact Items */
.contact-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.contact-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.contact-name {
    font-weight: 600;
    color: #1e293b;
}

.contact-company {
    color: #64748b;
    font-size: 0.9rem;
}

.contact-email {
    color: #2563eb;
    text-decoration: none;
}

.contact-message {
    background: #f8fafc;
    padding: 0.75rem;
    border-radius: 6px;
    margin: 0.75rem 0;
    color: #475569;
    line-height: 1.5;
}

.contact-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #64748b;
}

.contact-actions {
    margin-top: 0.75rem;
    display: flex;
    gap: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-stats {
        grid-template-columns: 1fr;
    }

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

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

    .filter-section {
        flex-direction: column;
    }

    .filter-section input {
        min-width: auto;
    }

    .header-actions {
        flex-direction: column;
        width: 100%;
    }

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

.order-item,
.content-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin-bottom: 1rem;
}

.order-status,
.status {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status.pending {
    background: #fef3c7;
    color: #92400e;
}

.status.confirmed {
    background: #dbeafe;
    color: #1e40af;
}

.status.shipped {
    background: #d1fae5;
    color: #065f46;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
}

.price {
    font-weight: 700;
    color: #1e293b;
}

.change.positive {
    color: #10b981;
}

.change.negative {
    color: #ef4444;
}

.data-table {
    overflow-x: auto;
}

.data-table table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.data-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #1e293b;
}

.btn-small {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn-small.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-small.btn-secondary {
    background: #ef4444;
    color: white;
}

.inventory-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.inventory-item {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.inventory-item h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.inventory-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #64748b;
}

.inventory-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    transition: width 0.3s ease;
}

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

.client-card {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.client-card h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.client-card p {
    color: #64748b;
    margin-bottom: 1rem;
}

.client-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #64748b;
}

.price-form .form-group {
    margin-bottom: 1rem;
}

.price-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1e293b;
    font-weight: 500;
}

.price-form input,
.price-form select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
}

.content-actions {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    flex-shrink: 0;
}

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

.chart-placeholder {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.chart-placeholder h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.chart-mockup {
    font-size: 4rem;
    color: #94a3b8;
    padding: 2rem;
}

/* Settings Grid */
.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Image Preview Styles */
.image-preview {
    margin-top: 1rem;
    min-height: 60px;
    border: 2px dashed #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    position: relative;
}

.image-preview.has-image {
    border-style: solid;
    border-color: #2563eb;
    background: white;
}

.image-preview img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 6px;
    object-fit: cover;
}

.image-preview .placeholder-text {
    color: #94a3b8;
    font-size: 0.9rem;
    text-align: center;
}

.remove-image {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* File Input Styling */
input[type="file"] {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.3s ease;
}

input[type="file"]:hover {
    border-color: #2563eb;
    background: white;
}

/* Modal Styles - Enhanced 3D */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(30, 41, 59, 0.9));
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: modalFadeIn 0.4s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(15px);
    }
}

.modal-content {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid #e2e8f0;
}



.modal-content h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #64748b;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ef4444;
}

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

.rating {
    color: #fbbf24;
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.content-info {
    flex: 1;
}

.content-info strong {
    display: block;
    color: #1e293b;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.content-info span {
    display: block;
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.content-info p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.content-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 1rem;
}

.content-actions {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

/* Testimonials Section for Homepage */
.testimonials {
    padding: 6rem 0;
    background: #f8fafc;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: #2563eb;
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.author-info h4 {
    color: #1e293b;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.author-info p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Empty State Styles */
.empty-state {
    text-align: center;
    padding: 3rem;
    color: #64748b;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px dashed #e2e8f0;
    font-style: italic;
}

/* Content Meta Styles */
.content-meta {
    color: #64748b !important;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Testimonial Slider Styles */
.testimonial-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    flex: 0 0 33.333%;
    padding: 0 1rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}


.slider-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 14px,
    height: 14px;
    border-radius: 50%;
    border: none;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #2563eb;
    transform: scale(1.2);
}

/* Responsive Slider */
@media (max-width: 1024px) {
    .testimonial-slide {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .testimonial-slide {
        flex: 0 0 100%;
    }

    .slider-controls {
        gap: 1rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Admin Dashboard Improvements */
.admin-header {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

.admin-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.admin-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.admin-sidebar {
    width: 260px;
    background: #ffffff;
    border-right: 1px solid #e2e8f0;
    padding: 1.5rem 0;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    border: none;
    background: transparent;
    color: #64748b;
    border-radius: 0;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
    border-left: 3px solid transparent;
}

.menu-item:hover {
    background: #f8fafc;
    color: #2563eb;
    border-left-color: #e2e8f0;
}

.menu-item.active {
    background: #eff6ff;
    color: #2563eb;
    border-left-color: #2563eb;
    font-weight: 600;
}

.menu-icon {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.menu-text {
    font-size: 0.95rem;
}

/* Content List Improvements */
.content-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.content-list::-webkit-scrollbar {
    width: 6px;
}

.content-list::-webkit-scrollbar-track {
    background: rgba(226, 232, 240, 0.3);
    border-radius: 3px;
}

.content-list::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 3px;
}

/* 3D Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    perspective: 1000px;
}

.product-card-3d {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 25px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: perspective(1000px) rotateX(2deg);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 8px 32px rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.product-card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-3d:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-8px) scale(1.02);
    box-shadow: 
        0 35px 80px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 15px 50px rgba(37, 99, 235, 0.15);
}

.product-card-3d:hover::before {
    opacity: 1;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-card-3d:hover .card-glow {
    opacity: 1;
}

.product-image {
    height: 200px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #94a3b8;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    position: relative;
}

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

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

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

.product-content .product-category {
    display: inline-block;
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    color: #0369a1;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(3, 105, 161, 0.2);
}

.product-content h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.product-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-content h3 a:hover {
    color: #2563eb;
}

.product-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-content .price-range {
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 15px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
    font-size: 1.1rem;
}

.product-content .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: 1rem;
}

/* Latest Content Sections (Products, Blog) */
.latest-content {
    padding: 5rem 0;
    background: #f8fafc;
}

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

.latest-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.latest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.latest-card .card-image {
    position: relative;
    overflow: hidden;
}

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

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

.latest-card .card-category {
    display: inline-block;
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    color: #0369a1;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 1.5rem 1.5rem 1rem;
}

.latest-card h3 {
    margin: 0 1.5rem 1rem;
    font-size: 1.3rem;
    color: #1e293b;
}

.latest-card h3 a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.latest-card h3 a:hover {
    color: #1d4ed8;
}

.latest-card p {
    margin: 0 1.5rem 1.5rem;
    color: #64748b;
    line-height: 1.6;
}

.latest-card .card-price {
    margin: 0 1.5rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #059669;
}

.section-footer {
    text-align: center;
}

.error-message {
    text-align: center;
    color: #64748b;
    font-style: italic;
    padding: 2rem;
}

.product-specifications {
    margin: 1.5rem 0;
}

.product-specifications ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-specifications li {
    padding: 0.5rem 0;
    color: #64748b;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.product-specifications li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 0.8rem;
}

.product-specifications li:last-child {
    border-bottom: none;
}

.product-specifications p {
    color: #64748b;
    font-style: italic;
    margin: 0;
}

/* 3D Blog Cards */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    perspective: 1000px;
}

.blog-card-3d {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: perspective(1000px) rotateX(2deg);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 8px 32px rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.blog-card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card-3d:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-8px) scale(1.02);
    box-shadow: 
        0 35px 80px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 15px 50px rgba(37, 99, 235, 0.15);
}

.blog-card-3d:hover::before {
    opacity: 1;
}

.blog-card-3d .card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.blog-card-3d:hover .card-glow {
    opacity: 1;
}

.blog-card-3d .blog-image {
    height: 200px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #94a3b8;
    overflow: hidden;
    position: relative;
}

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

.blog-card-3d:hover .blog-image img {
    transform: scale(1.05);
}

.blog-card-3d .blog-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.blog-card-3d .blog-category {
    display: inline-block;
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    color: #0369a1;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(3, 105, 161, 0.2);
}

.blog-card-3d .blog-content h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.blog-card-3d .blog-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-3d .blog-content h3 a:hover {
    color: #2563eb;
}

.blog-card-3d .blog-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-card-3d .blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

.blog-card-3d .read-more {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-card-3d .read-more:hover {
    color: #1d4ed8;
    transform: translateX(5px);
}

/* Responsive Design for 3D Cards */
@media (max-width: 1024px) {
    .products-grid,
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .products-grid,
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card-3d,
    .blog-card-3d {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .product-image,
    .blog-card-3d .blog-image {
        height: 180px;
        margin-bottom: 1rem;
    }

    .blog-card-3d .blog-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .product-card-3d,
    .blog-card-3d {
        padding: 1.25rem;
        border-radius: 15px;
        margin: 0 0.5rem;
    }

    .product-image,
    .blog-card-3d .blog-image {
        height: 160px;
        border-radius: 12px;
    }

    .blog-card-3d .blog-content {
        padding: 1.25rem;
    }

    .product-content .price-range {
        padding: 0.6rem 1.25rem;
        font-size: 1rem;
    }
}

/* About Page Specific Styles */
.about-hero {
    min-height: 80vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 4rem;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%232563eb" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23about-grid)"/></svg>');
    opacity: 0.5;
}

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

.about-hero .hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.about-hero p {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.hero-stats .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: transform 0.3s ease;
}

.hero-stats .stat-item:hover {
    transform: translateY(-5px);
}

.hero-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
    color: #64748b;
    font-weight: 500;
}

.hero-visual {
    position: relative;
    height: 500px;
    animation: slideInRight 1s ease-out;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-width: 120px;
    animation: floatPrice 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.floating-card i {
    font-size: 2rem;
    color: #2563eb;
}

.floating-card span {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.9rem;
}

.card-1 {
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.card-2 {
    top: 40%;
    left: 10%;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 30%;
    right: 10%;
    animation-delay: 3s;
}

.card-4 {
    bottom: 10%;
    left: 30%;
    animation-delay: 4.5s;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #eff6ff;
    color: #2563eb;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.achievements {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: transform 0.3s ease;
}

.achievement-item:hover {
    transform: translateX(10px);
}

.achievement-icon {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.achievement-content h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.achievement-content p {
    color: #64748b;
    margin: 0;
}

.story-visual .timeline {
    position: relative;
    padding-left: 2rem;
}

.story-visual .timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #2563eb, #60a5fa);
}

.story-visual .timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.story-visual .timeline-item::before {
    content: '';
    position: absolute;
    left: -0.5rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background: #2563eb;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.story-visual .year {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.story-visual .milestone h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.story-visual .milestone p {
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.mission-vision {
    padding: 6rem 0;
    background: #f8fafc;
}

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

.mission-card,
.vision-card {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.mission-card .card-icon,
.vision-card .card-icon {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.mission-card h3,
.vision-card h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.5rem;
}

.mission-card p,
.vision-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

.feature i {
    color: #2563eb;
    font-size: 0.9rem;
}

.team-section {
    padding: 6rem 0;
    background: white;
}

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

.team-member {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.member-card {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.4s ease;
}

.member-card:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.member-photo {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.member-photo .avatar {
    font-size: 4rem;
    transition: transform 0.3s ease;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(59, 130, 246, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-photo:hover .member-overlay {
    opacity: 1;
}

.member-photo:hover .avatar {
    transform: scale(1.1);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    background: white;
    color: #2563eb;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #2563eb;
    color: white;
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.position {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.expertise {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tag {
    background: #eff6ff;
    color: #2563eb;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.bio {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9rem;
}

.values-section {
    padding: 6rem 0;
    background: #f8fafc;
}

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

.value-item {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.value-item:hover::before {
    transform: scaleX(1);
}

.value-icon {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    transition: transform 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-item h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-item p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.value-metric {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.metric-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.25rem;
}

.metric-label {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* Animation Classes */
.animate-in {
    animation: slideInUp 0.8s ease-out forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .about-hero .container {
        gap: 3rem;
    }

    .about-hero h1 {
        font-size: 3rem;
    }

    .mv-grid {
        gap: 2rem;
    }

    .cta-content {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 0 3rem;
        min-height: 70vh;
    }

    .about-hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero p {
        font-size: 1.1rem;
    }

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

    .hero-stats .stat-item {
        padding: 1rem;
    }

    .hero-stats .stat-number {
        font-size: 2rem;
    }

    .hero-visual {
        height: 300px;
    }

    .floating-card {
        padding: 1rem;
        min-width: 90px;
    }

    .floating-card i {
        font-size: 1.5rem;
    }

    .floating-card span {
        font-size: 0.8rem;
    }

    .card-1, .card-2, .card-3, .card-4 {
        position: static;
        display: inline-flex;
        margin: 0.5rem;
        animation: none;
    }

    .floating-elements {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
        padding: 2rem;
    }

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

    .mv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-card,
    .vision-card {
        padding: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .value-item {
        padding: 2rem 1.5rem;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .cta-text h2 {
        font-size: 2rem;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 5rem 0 2rem;
    }

    .about-hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .achievement-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .achievement-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .story-visual .timeline {
        padding-left: 1rem;
    }

    .story-visual .timeline-item {
        padding-left: 1.5rem;
    }

    .mission-card,
    .vision-card {
        padding: 1.5rem;
    }

    .mission-card .card-icon,
    .vision-card .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-item {
        padding: 1.5rem 1rem;
    }

    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .member-info {
        padding: 1.5rem;
    }

    .member-photo {
        height: 150px;
    }

    .member-photo .avatar {
        font-size: 3rem;
    }

    .cta-text h2 {
        font-size: 1.8rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 1rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.hidden {
    display: none;
}

/* Loading and Success States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.success {
    background: #10b981 !important;
}

.error {
    background: #ef4444 !important;
}