/* Performance Optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Use CSS containment for better rendering */
.product-card,
.team-card,
.contact-item {
    contain: layout style paint;
}

/* Will-change for animated elements */
.product-card:hover,
.team-card:hover,
.contact-item:hover {
    will-change: transform;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Hardware acceleration */
.product-img,
.team-img,
.hero-section {
    transform: translateZ(0);
    backface-visibility: hidden;
}


:root {
            --color-primary: #1F2937;
            /* Deep Charcoal Gray */
            --color-accent: #FBBF24;
            /* Amber 400 / Gold Yellow */
        }


        body {
            font-family: 'Inter', sans-serif;
            color: #374151;
            /* Gray 700 */
            background-color: #F9FAFB;
            /* Gray 50 (Off-white/light) */
        }

        .section-padding {
            padding: 5rem 1.5rem;
            /* Equivalent to py-20 px-6 */
        }

        .hero-bg {
            /* Updated to use an actual uploaded image as background */
            background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), url('./bg.jpg');
            background-size: cover;
            background-position: center;
        }

        /* Style for Floating Label Input */
        .floating-label-group {
            position: relative;
        }

        /* Uses custom variable for focus color */
        .floating-label-group input:focus~label,
        .floating-label-group input:not(:placeholder-shown)~label,
        .floating-label-group textarea:focus~label,
        .floating-label-group textarea:not(:placeholder-shown)~label {
            top: -0.75rem;
            font-size: 0.75rem;
            /* text-xs */
            color: var(--color-accent);
            background-color: white;
            padding: 0 0.5rem;
            left: 0.5rem;
        }

        /* Added shadow for better readability of white text on the new background image */
        .text-shadow-lg {
            text-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
        }

/* Clean Team Card Styles - Minimal Animation */
/* Clean Team Card Styles - Reduced Size */
.team-card {
    position: relative;
    background: #ffffff;
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    max-width: 340px; /* Added max-width to control card size */
    margin: 0 auto; /* Center the cards */
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* Decorative Top Bar */
.team-card-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px; /* Reduced from 6px */
    background: linear-gradient(90deg, var(--color-accent) 0%, #f59e0b 100%);
    border-radius: 1.25rem 1.25rem 0 0;
}

/* Profile Image Container */
.team-img-container {
    padding: 1.5rem 1.5rem 0 1.5rem; /* Reduced from 2rem */
}

.team-img-wrapper {
    position: relative;
    display: inline-block;
    border-radius: 1rem; /* Reduced from 1.25rem */
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Reduced shadow */
}

.team-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.team-card:hover .team-img {
    transform: scale(1.03);
}

/* Content Area */
.team-content {
    padding: 1.25rem 1.5rem 1.75rem 1.5rem; /* Reduced padding */
    background: #ffffff;
}

/* Quote/Description Box */
.team-quote {
    background: #f8fafc;
    border-left: 3px solid var(--color-accent);
    padding: 0.875rem 1rem; /* Reduced padding */
    margin-bottom: 1.25rem; /* Reduced margin */
    border-radius: 0.5rem;
    font-size: 0.875rem; /* Reduced from 0.95rem */
    line-height: 1.5; /* Reduced from 1.6 */
    color: #475569;
    font-style: italic;
}

/* Name Styling */
.team-name {
    font-size: 1.35rem; /* Reduced from 1.5rem */
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

/* Title/Position */
.team-title {
    font-size: 0.8rem; /* Reduced from 0.875rem */
    font-weight: 500;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Divider */
.team-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
    margin: 1rem 0;
}

/* Product Card Styles */
.product-card {
    position: relative;
    background: #ffffff;
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #e2e8f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), #f59e0b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.15);
    border-color: var(--color-accent);
}

/* Product Image Container */
.product-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    margin: 1.25rem 1.25rem 0 1.25rem;
    aspect-ratio: 16/9;
}

.product-img-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-img-container::after {
    opacity: 1;
}

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

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

/* Product Badge */
.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--color-accent), #f59e0b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
    z-index: 10;
}

/* Product Content */
.product-content {
    padding: 1.5rem 1.5rem 1.75rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    display: inline-block;
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: var(--color-accent);
}

.product-description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Product Features List */
.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.product-features li {
    display: flex;
    align-items: center;
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.product-features li::before {
    content: '✓';
    color: var(--color-accent);
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1rem;
}

/* Product CTA Button */
.product-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    color: #1e293b;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-accent), #f59e0b);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.product-cta:hover::before {
    transform: translateX(0);
}

.product-cta:hover {
    color: white;
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.product-cta svg {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.product-cta:hover svg {
    transform: translateX(4px);
}

/* Section Header Enhancement */
.section-header-accent {
    display: inline-block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), #f59e0b);
    border-radius: 2px;
    margin: 0 auto 1rem;
}


/* Contact Section Styles */
.contact-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

/* Contact Form Styles */
.contact-form-wrapper {
    background: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-accent), #f59e0b, var(--color-accent));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-accent), #f59e0b);
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 8px 16px rgba(251, 191, 36, 0.3);
}

.form-header-icon i {
    font-size: 1.75rem;
    color: white;
}

.floating-label-group {
    position: relative;
    margin-bottom: 1.5rem;
}

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

.floating-label-group input:focus,
.floating-label-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.1);
}

.floating-label-group label {
    position: absolute;
    left: 3rem;
    top: 1rem;
    color: #64748b;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 0.25rem;
}

.floating-label-group input:focus ~ label,
.floating-label-group input:not(:placeholder-shown) ~ label,
.floating-label-group textarea:focus ~ label,
.floating-label-group textarea:not(:placeholder-shown) ~ label {
    top: -0.65rem;
    left: 2.5rem;
    font-size: 0.75rem;
    color: var(--color-accent);
    background: white;
    padding: 0 0.5rem;
    font-weight: 600;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #94a3b8;
    transition: color 0.3s ease;
    z-index: 1;
}

.floating-label-group input:focus ~ .input-icon,
.floating-label-group textarea:focus ~ .input-icon {
    color: var(--color-accent);
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-accent), #f59e0b);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(251, 191, 36, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(251, 191, 36, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Contact Info Styles */
.contact-info-wrapper {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0f172a 100%);
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.contact-info-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.contact-info-header {
    position: relative;
    z-index: 1;
    border-bottom: 2px solid rgba(251, 191, 36, 0.2);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info-header h3 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.contact-info-header p {
    color: #cbd5e1;
    font-size: 0.95rem;
}

.contact-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(8px);
    border-color: var(--color-accent);
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent), #f59e0b);
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.contact-icon i {
    font-size: 1.25rem;
    color: white;
}

.contact-details h4 {
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p,
.contact-details a {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--color-accent);
}

.business-hours {
    position: relative;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.business-hours h4 {
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.business-hours h4 i {
    color: var(--color-accent);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hours-day {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.hours-time {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.hours-closed {
    color: #94a3b8;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-item {
        padding: 1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
}

/* Contact Info Styles - Lighter Theme */
.contact-info-wrapper {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.contact-info-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.contact-info-header {
    position: relative;
    z-index: 1;
    border-bottom: 2px solid rgba(251, 191, 36, 0.3);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info-header h3 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.contact-info-header p {
    color: #64748b;
    font-size: 0.95rem;
}

.contact-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background: #ffffff;
    border-radius: 1rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    z-index: 1;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.contact-item:hover {
    background: #ffffff;
    transform: translateX(8px);
    border-color: var(--color-accent);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.15);
}

.contact-item:active {
    transform: translateX(6px) scale(0.98);
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent), #f59e0b);
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 16px rgba(251, 191, 36, 0.4);
}

.contact-icon i {
    font-size: 1.25rem;
    color: white;
}

.contact-details {
    flex-grow: 1;
}

.contact-details h4 {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p,
.contact-details span {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-details h4 {
    color: var(--color-accent);
}

.contact-item:hover .contact-details p,
.contact-item:hover .contact-details span {
    color: #475569;
}

/* External link indicator */
.contact-item::after {
    content: '';
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--color-accent), #f59e0b);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item:hover::after {
    opacity: 1;
    right: 1rem;
}

/* Arrow icon for external links */
.contact-link-arrow {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--color-accent);
}

.contact-item:hover .contact-link-arrow {
    opacity: 1;
    right: 1.25rem;
}

.business-hours {
    position: relative;
    margin-top: 2rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 1rem;
    border: 2px solid #e2e8f0;
    z-index: 1;
}

.business-hours h4 {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.business-hours h4 i {
    color: var(--color-accent);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

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

.hours-day {
    color: #64748b;
    font-size: 0.9rem;
}

.hours-time {
    color: #1e293b;
    font-weight: 600;
    font-size: 0.9rem;
}

.hours-closed {
    color: #94a3b8;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-item {
        padding: 1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-item:hover {
        transform: translateY(-4px);
    }
}

/* About Section Styles */
/* About Section Styles */
.about-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* About Content Card */
.about-content-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.about-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), #f59e0b);
}

.about-heading {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-heading .highlight {
    background: linear-gradient(135deg, var(--color-accent), #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 2px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-accent), #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Feature Cards */
.feature-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 2px solid #e2e8f0;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.feature-card:hover {
    border-color: var(--color-accent);
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.15);
}

.feature-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent), #f59e0b);
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
}

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

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* About Image Section */
.about-image-section {
    position: relative;
}

.about-main-image {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    margin-bottom: 2rem;
}

.about-main-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-main-image:hover img {
    transform: scale(1.05);
}

.about-main-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
}

/* Image Overlay Badge */
.image-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.25rem 1.75rem;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.image-badge h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.image-badge p {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Value Cards Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.value-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    padding: 1.75rem;
    border-radius: 1rem;
    border: 2px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(251, 191, 36, 0.15);
}

.value-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-accent), #f59e0b);
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 6px 16px rgba(251, 191, 36, 0.3);
}

.value-icon-wrapper i {
    font-size: 1.75rem;
    color: white;
}

.value-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* CTA Button */
.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-accent), #f59e0b);
    color: white;
    font-weight: 700;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(251, 191, 36, 0.3);
}

.about-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(251, 191, 36, 0.4);
}

.about-cta svg {
    transition: transform 0.3s ease;
}

.about-cta:hover svg {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-heading {
        font-size: 1.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
    }
    
    .image-badge {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1rem;
    }
}

.email-short {
    display: none;
}

@media (max-width: 640px) {
    .email-full {
        display: none;
    }
    .email-short {
        display: inline;
    }
}

/* Enhanced Header & Navigation Styles */
.main-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: linear-gradient(135deg, var(--color-primary) 0%, #0f172a 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: height 0.3s ease;
}

.main-header.scrolled .header-content {
    height: 70px;
}

/* Logo Styles */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 100;
}

.logo-wrapper:hover {
    transform: translateY(-2px);
}

.logo-image {
    height: 48px;
    width: auto;
    border-radius: 0.75rem;
    background: white;
    padding: 0.25rem;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
}

.logo-wrapper:hover .logo-image {
    box-shadow: 0 6px 16px rgba(251, 191, 36, 0.5);
}

.company-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.2;
}

.company-name-accent {
    font-weight: 600;
    color: var(--color-accent);
    display: block;
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-link {
    position: relative;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), #f59e0b);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--color-accent);
}

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

/* Mobile Menu Button */
.mobile-menu-button {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 100;
    padding: 0.75rem;
    background: linear-gradient(135deg, var(--color-accent), #f59e0b);
    border-radius: 0.75rem;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 24px rgba(251, 191, 36, 0.5);
}

.mobile-menu-button:active {
    transform: scale(0.95);
}

.mobile-menu-button i {
    color: white;
    width: 24px;
    height: 24px;
}

@media (min-width: 768px) {
    .mobile-menu-button {
        display: none;
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.98), rgba(15, 23, 42, 0.98));
    backdrop-filter: blur(10px);
    z-index: 50;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
}

.mobile-nav-link {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-accent), #f59e0b);
    border-radius: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.mobile-nav-link:hover {
    color: white;
}

.mobile-nav-link:hover::before {
    opacity: 1;
}

/* Enhanced Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(31, 41, 55, 0.85), rgba(15, 23, 42, 0.75)), url('./bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 2rem 1.5rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 2rem;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--color-accent), #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: #e2e8f0;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: linear-gradient(135deg, var(--color-accent), #f59e0b);
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 0.875rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.5);
}

.hero-btn-primary:active {
    transform: translateY(-1px);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 0.875rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

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

/* Responsive Design */
@media (max-width: 640px) {
    .header-content {
        height: 70px;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .company-name {
        font-size: 1.125rem;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .mobile-nav-link {
        font-size: 1.5rem;
    }
}

@media (min-width: 641px) and (max-width: 767px) {
    .company-name {
        font-size: 1.25rem;
    }
}