/* ELaffoods Industries - Custom Styles */

:root {
    /* Egyptian-inspired Color Palette */
    --primary-blue: #06AC5b;
    --secondary-blue: #043236;
    --accent-green: #eaa453;
    --nile-blue: #9fc3ff;
    --sand-beige: #ffffff;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --gold-accent: #eaa453;
/*
#dbfe9b-1c4a39
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --accent-green: #10b981;
    --nile-blue: #0ea5e9;
    --sand-beige: #f5f5dc;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --gold-accent: #f59e0b;
----

*/
    
}

/* Typography - Cairo Font */
body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--primary-blue);
}

/* Front page typography */
.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 2.25rem;
    font-weight: 400;
}

.hero-body {
    font-size: 1.5rem;
}

/* Content page typography */
.section-title {
    font-size: 2.25rem;
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
}

.section-body {
    font-size: 1.25rem;
}

/* Custom Bootstrap overrides */
.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--secondary-blue);
    border-color: var(--secondary-blue);
}

.text-primary {
    color: var(--primary-blue) !important;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgb(3 4 1 / 63%) 0%, rgba(33, 85, 109, 0.2) 100%);
    background-image: url('../assets/images/hero-bg-custom11.png');
    background-size: cover;
    background-position:center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(24, 24, 24, 0.203) 0%, rgba(14, 14, 14, 0.085) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.about-section {
    background-color: var(--sand-beige);
}

.products-section {
    background-color: var(--white);
}

.why-choose-section {
    background-color: #f8fafc;
}

.contact-section {
    background-color: var(--white);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 1rem 0;
    z-index: 1050;
    display: none;
}

.cookie-consent.show {
    display: block;
}

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

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.75rem;
    }
    
    .hero-body {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
    }
    
    .section-body {
        font-size: 1rem;
    }
}

/* Card styles */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Product cards */
.product-card {
    border-radius: 15px;
    overflow: hidden;
}

.product-card img {
    height: 250px;
    object-fit: cover;
}

/* Certification badges */
.certification-badge {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0.5rem;
}

/* Timeline styles */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-blue);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 2rem 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    background: var(--primary-blue);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* Utility classes */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.text-gold {
    color: var(--gold-accent);
}

.border-primary {
    border-color: var(--primary-blue) !important;
}



/* Enhanced Interactive Elements and Animations */

/* Hero Section Enhancements */
.hero-image-container {
    position: relative;
    overflow: hidden;
}

.hero-image-container img {
    transition: transform 0.3s ease;
}

.hero-image-container:hover img {
    transform: scale(1.05);
}

.floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    animation: float 3s ease-in-out infinite;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.animate-bounce {
    animation: bounce 2s infinite;
}

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

/* Product Filter Buttons */
.product-filters .btn {
    transition: all 0.3s ease;
    margin: 0.25rem;
}

.product-filters .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.product-filters .btn.active {
    background-color: var(--secondary-blue);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(30, 58, 138, 0.3);
}

/* Enhanced Card Hover Effects */
.product-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.product-card img {
    transition: transform 0.3s ease;
}

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

/* Testimonial Cards */
.testimonial-card {
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.testimonial-card:hover {
    border-left-color: var(--primary-blue);
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Timeline Enhancements */
.timeline-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-content {
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Form Enhancements */
.form-control, .form-select {
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.25);
    transform: translateY(-2px);
}

.form-check-input:checked {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

/* Button Enhancements */
.btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Certification Badges */
.certification-item {
    transition: all 0.3s ease;
}

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

.certification-badge {
    transition: all 0.3s ease;
    filter: grayscale(20%);
}

.certification-item:hover .certification-badge {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Advantage Cards */
.advantage-card {
    padding: 2rem;
    transition: all 0.3s ease;
    border-radius: 15px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.advantage-card:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.2);
}

.advantage-icon i {
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon i {
    color: white !important;
    transform: scale(1.2);
}

/* Contact Items */
.contact-item {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 10px;
}

.contact-item:hover {
    background: rgba(30, 58, 138, 0.05);
    transform: scale(1.05);
}

/* Map Placeholder */
.map-placeholder {
    transition: all 0.3s ease;
    cursor: pointer;
}

.map-placeholder:hover {
    background: var(--primary-blue) !important;
    color: white;
    transform: scale(1.02);
}

/* Accordion Enhancements */
.accordion-button {
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-blue);
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(30, 58, 138, 0.25);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

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

/* Pulse Animation for CTAs */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Navbar Scroll Effect */
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .hero-actions .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .product-filters {
        text-align: center;
    }
    
    .product-filters .btn {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item::before {
        left: 20px;
    }
    
    .timeline-content {
        margin-left: 50px;
    }
    
    .advantage-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-card {
        margin-bottom: 1rem;
    }
}

/* Print Styles */
@media print {
    .navbar, .cookie-consent, .scroll-indicator {
        display: none !important;
    }
    
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .section {
        padding: 1rem 0;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-blue: #000080;
        --secondary-blue: #0000ff;
        --text-dark: #000000;
        --text-light: #333333;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* RTL Support for Arabic Language */
.rtl {
    direction: rtl;
    text-align: right;
}

.rtl .navbar-brand {
    margin-left: 0;
    margin-right: auto;
}

.rtl .navbar-nav {
    margin-left: 0;
    margin-right: auto;
}

.rtl .nav-link {
    margin: 0 0.5rem 0 0;
}

.rtl .btn {
    margin-left: 0.5rem;
    margin-right: 0;
}

.rtl .me-2 {
    margin-left: 0.5rem !important;
    margin-right: 0 !important;
}

.rtl .me-3 {
    margin-left: 1rem !important;
    margin-right: 0 !important;
}

.rtl .ms-2 {
    margin-right: 0.5rem !important;
    margin-left: 0 !important;
}

.rtl .ms-auto {
    margin-right: auto !important;
    margin-left: 0 !important;
}

.rtl .text-end {
    text-align: right !important;
}

.rtl .text-start {
    text-align: left !important;
}

.rtl .hero-actions .btn {
    margin-left: 1rem;
    margin-right: 0;
}

.rtl .timeline::before {
    right: 50%;
    left: auto;
    transform: translateX(50%);
}

.rtl .timeline-item::before {
    right: 50%;
    left: auto;
    transform: translate(50%, -50%);
}

.rtl .floating-badge {
    left: 20px;
    right: auto;
}

.rtl .scroll-indicator {
    right: 50%;
    left: auto;
    transform: translateX(50%);
}

.rtl .contact-item {
    text-align: right;
}

.rtl .form-check {
    text-align: right;
}

.rtl .form-check-input {
    margin-left: 0.25em;
    margin-right: -1.25em;
}

.rtl .dropdown-menu {
    right: 0;
    left: auto;
}

/* Enhanced Cookie Consent for RTL */
.rtl .cookie-consent {
    text-align: right;
}

.rtl .cookie-actions {
    text-align: left;
}

/* Arabic Font Optimization */
.rtl h1, .rtl h2, .rtl h3, .rtl h4, .rtl h5, .rtl h6 {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
}

.rtl p, .rtl span, .rtl div {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.8;
}

/* RTL Mobile Optimizations */
@media (max-width: 768px) {
    .rtl .timeline::before {
        right: 20px;
        left: auto;
    }
    
    .rtl .timeline-item::before {
        right: 20px;
        left: auto;
    }
    
    .rtl .timeline-content {
        margin-right: 50px;
        margin-left: 0;
    }
    
    .rtl .hero-actions .btn {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Enhanced Legal Pages Styling */
.privacy-content h2, .legal-content h2 {
    color: var(--primary-blue);
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 0.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-content h3, .legal-content h3 {
    color: var(--secondary-blue);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.privacy-content ul, .legal-content ul {
    padding-left: 1.5rem;
}

.privacy-content li, .legal-content li {
    margin-bottom: 0.5rem;
}

.company-info, .address-info, .contact-info, .management-info, 
.regulatory-info, .insurance-info, .dispute-info, .certifications,
.authority-info {
    border-left: 4px solid var(--primary-blue);
}

.rtl .company-info, .rtl .address-info, .rtl .contact-info, 
.rtl .management-info, .rtl .regulatory-info, .rtl .insurance-info, 
.rtl .dispute-info, .rtl .certifications, .rtl .authority-info {
    border-left: none;
    border-right: 4px solid var(--primary-blue);
}

/* Enhanced Footer Styling */
.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: var(--primary-blue) !important;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-section h6 {
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-blue);
}

.rtl .footer-section h6::after {
    right: 0;
    left: auto;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(5px);
}

.rtl .footer-section ul li:hover {
    transform: translateX(-5px);
}

.certifications .badge {
    margin: 0.25rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
}

/* Enhanced Cookie Consent Styling */
.cookie-consent {
    background: linear-gradient(135deg, var(--text-dark) 0%, #374151 100%);
    border-top: 3px solid var(--primary-blue);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.cookie-content h6 {
    color: var(--primary-blue);
    font-weight: 600;
}

.cookie-actions .btn {
    margin: 0.25rem;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .cookie-consent .row {
        text-align: center;
    }
    
    .cookie-actions {
        margin-top: 1rem;
    }
    
    .cookie-actions .btn {
        display: block;
        width: 100%;
        margin: 0.25rem 0;
    }
}


/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background: var(--primary-blue) !important;
    color: white !important;
    border: none !important;
    font-size: 18px !important;
    cursor: pointer !important;
    z-index: 1000 !important;
    display: none !important;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3) !important;
    transition: all 0.3s ease !important;
}

.scroll-top-btn:hover {
    background: var(--secondary-blue) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 6px 16px rgba(30, 58, 138, 0.4) !important;
}

.scroll-top-btn:active {
    transform: scale(0.95) !important;
}

/* Enhanced Button Styles */
.btn {
    border-radius: 25px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
}

/* Enhanced Form Styles */
.form-control {
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.25);
}

/* Enhanced Card Styles */
.card {
    border-radius: 15px;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

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

.fade-in.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-body {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
    }
    
    .scroll-top-btn {
        bottom: 20px !important;
        right: 20px !important;
        width: 45px !important;
        height: 45px !important;
        font-size: 16px !important;
    }
}

/* RTL Support for Arabic */
.rtl {
    direction: rtl;
    text-align: right;
}

.rtl .navbar-nav {
    margin-left: 0;
    margin-right: auto;
}

.rtl .nav-link {
    margin: 0 0.5rem 0 0;
}

.rtl .btn {
    margin-left: 0;
    margin-right: 0.5rem;
}

.rtl .hero-actions .btn {
    margin-left: 0;
    margin-right: 1rem;
}

.rtl .scroll-top-btn {
    right: auto !important;
    left: 30px !important;
}

@media (max-width: 768px) {
    .rtl .scroll-top-btn {
        left: 20px !important;
    }
}

/* Enhanced Accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .scroll-top-btn,
    .cookie-consent {
        display: none !important;
    }
    
    .hero-section {
        background: white !important;
        color: black !important;
        min-height: auto !important;
    }
}


/* Premium Product Showcase Styles */
.premium-product-showcase {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 3px solid #ffc107;
    position: relative;
    overflow: hidden;
}

.premium-product-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    animation: premium-glow 4s ease-in-out infinite alternate;
}

@keyframes premium-glow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.premium-badge {
    background: linear-gradient(135deg, #ffc107 0%, #ff8c00 100%);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    display: inline-block;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    position: relative;
    z-index: 2;
}

.premium-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.premium-subtitle {
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.premium-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.premium-image-container img {
    transition: transform 0.3s ease;
}

.premium-image-container:hover img {
    transform: scale(1.05);
}

.premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.premium-image-container:hover .premium-overlay {
    opacity: 1;
}

.premium-stats {
    color: white;
}

.stat-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat-item i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

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

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.feature-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.premium-badges .badge {
    font-size: 0.9rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.pricing-option {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-blue);
    margin-bottom: 1rem;
}

.premium-actions .btn {
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.premium-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.premium-actions .btn-warning {
    background: linear-gradient(135deg, #ffc107 0%, #ff8c00 100%);
    border: none;
    color: white;
}

.premium-actions .btn-warning:hover {
    background: linear-gradient(135deg, #ff8c00 0%, #ffc107 100%);
    color: white;
}

/* Technology Cards Styling */
.technology-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.technology-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--primary-blue);
}

.tech-icon {
    transition: transform 0.3s ease;
}

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

.tech-features .badge {
    margin: 0.25rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    border-radius: 15px;
}

.tech-stats {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
}

.tech-stats h3 {
    font-size: 2.5rem;
    font-weight: 700;
}

.tech-stats small {
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Mobile Responsiveness for Premium Product */
@media (max-width: 768px) {
    .premium-product-showcase {
        padding: 2rem 1rem;
    }
    
    .premium-title {
        font-size: 2rem;
    }
    
    .premium-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-item i {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
}

/* Animation for premium product */
@keyframes premium-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 193, 7, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); }
}

.premium-badge {
    animation: premium-pulse 2s infinite;
}

