/*
===============================================
  Mafiamads Medical Products Website
  Custom Stylesheet with Animations
  Modern, Responsive, Material Design
===============================================
*/

/* ===== CSS VARIABLES (Medical Theme) ===== */
:root {
    /* Color Palette */
    --primary-blue: #1E3A8A;
    --secondary-green: #4FD1C5;
    --accent-blue: #2563EB;
    --bg-white: #F7FAFC;
    --text-gray: #2D3748;
    --light-gray: #E2E8F0;
    --dark-blue: #1a2f6b;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1E3A8A, #4FD1C5);
    --gradient-secondary: linear-gradient(135deg, #4FD1C5, #1E3A8A);
    --gradient-overlay: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(79, 209, 197, 0.8));
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-gray);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== UTILITY CLASSES ===== */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Styling */
section {
    position: relative;
    overflow: hidden;
}

.section-header {
    max-width: 700px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #718096;
    line-height: 1.8;
}

/* ===== TOP INFO BAR ===== */
.top-info-bar {
    background: #4FD1C5;
    color: white;
    padding: 12px 0;
    font-size: 14px;
    position: sticky;
    top: 0;
    z-index: 1001;
}

.top-info-items {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: center;
}

.top-info-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    transition: var(--transition-fast);
}

.top-info-item:hover {
    color: var(--primary-blue);
    transform: translateX(3px);
}

.top-info-item i {
    font-size: 14px;
}

.top-social-links {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
}

.social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: white;
    color: #4FD1C5;
    transform: translateY(-3px);
}

/* ===== HEADER & NAVIGATION ===== */
.header-main {
    position: sticky;
    top: 43px;
    z-index: 1000;
    background: linear-gradient(135deg, #2C5364, #203A43, #0F2027);
}

.navbar {
    padding: 1.2rem 0;
    background: transparent !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition-normal);
}

.navbar.scrolled {
    padding: 0.8rem 0;
}

.logo-brand {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: #4FD1C5 !important;
    transition: var(--transition-fast);
    letter-spacing: 2px;
}

.logo-brand:hover {
    transform: scale(1.05);
    color: white !important;
}

.logo-brand i {
    color: #4FD1C5;
}

.brand-name {
    vertical-align: middle;
}

.nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
    transition: var(--transition-fast);
    position: relative;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #4FD1C5;
    transition: var(--transition-normal);
    transform: translateX(-50%);
}

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

.nav-link:hover,
.nav-link.active {
    color: #4FD1C5 !important;
}

.btn-header-cta {
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    background: #4FD1C5;
    color: white;
    border: none;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(79, 209, 197, 0.4);
    background: white;
    color: #2C5364;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #2C5364, #203A43, #0F2027);
    color: white;
    padding-top: 0;
    min-height: 100vh;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 83, 100, 0.9), rgba(32, 58, 67, 0.85));
    z-index: 1;
}

.hero-bg {
    z-index: 0;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    background: rgba(79, 209, 197, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(79, 209, 197, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    animation: fadeInUp 0.8s ease;
    color: #4FD1C5;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
    animation: fadeInUp 1.2s ease 0.4s both;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    animation: fadeInUp 1.4s ease 0.6s both;
}

.btn-primary-custom {
    padding: 1rem 2rem;
    background: var(--accent-blue);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
    color: white;
}

.btn-outline-custom {
    padding: 1rem 2rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.btn-outline-custom:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Trust Indicators */
.trust-indicators {
    animation: fadeInUp 1.6s ease 0.8s both;
}

.trust-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    transition: var(--transition-normal);
}

.trust-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.trust-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Hero Image */
.hero-image-container {
    position: relative;
    height: 500px;
}

.hero-image-wrapper {
    position: relative;
    height: 100%;
}

.hero-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 0 auto;
    animation: float 3s ease-in-out infinite;
}

.hero-image-placeholder i {
    font-size: 150px;
    opacity: 0.3;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: white;
    color: var(--primary-blue);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 24px;
    color: var(--secondary-green);
}

.floating-card-1 {
    top: 50px;
    left: -20px;
    animation-delay: 0s;
}

.floating-card-2 {
    top: 200px;
    right: -20px;
    animation-delay: 1s;
}

.floating-card-3 {
    bottom: 100px;
    left: 50px;
    animation-delay: 2s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-normal);
}

.scroll-link:hover {
    color: white;
    transform: translateY(5px);
}

.scroll-text {
    font-size: 14px;
    margin-bottom: 10px;
}

.scroll-icon {
    font-size: 24px;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    background: var(--bg-white);
    padding: 100px 0;
}

.product-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    overflow: hidden;
    height: 100%;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

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

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

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.verified-badge {
    background: #48BB78;
    color: white;
}

.product-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.product-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 20px;
    color: white;
    font-size: 50px;
    transition: var(--transition-normal);
}

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

.product-category {
    display: inline-block;
    padding: 5px 15px;
    background: var(--light-gray);
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-name {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.product-rating {
    color: #FFC107;
}

.rating-value {
    color: var(--text-gray);
    font-weight: 600;
    margin-left: 5px;
}

.product-code {
    padding: 10px;
    background: var(--bg-white);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-gray);
}

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

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.btn-verify {
    padding: 12px 20px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition-normal);
}

.btn-verify:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.btn-details {
    padding: 12px 20px;
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition-normal);
}

.btn-details:hover {
    background: var(--primary-blue);
    color: white;
}

/* ===== VERIFICATION SECTION ===== */
.verification-section {
    background: linear-gradient(to bottom, var(--bg-white), white);
    padding: 100px 0;
}

.verification-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.verification-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    font-size: 50px;
}

.verification-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-align: center;
}

.form-group-custom {
    position: relative;
}

.form-label-custom {
    display: block;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.form-control-custom {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition-normal);
    background: var(--bg-white);
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--secondary-green);
    box-shadow: 0 0 0 3px rgba(79, 209, 197, 0.1);
    animation: inputFocus 0.3s ease;
}

.form-text {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #718096;
}

.btn-verify-submit {
    width: 100%;
    padding: 15px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

.btn-verify-submit:hover::after {
    width: 500px;
    height: 500px;
}

.btn-verify-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.verification-result {
    padding: 20px;
    border-radius: 10px;
    animation: slideDown 0.5s ease;
}

.result-success {
    background: #C6F6D5;
    border: 2px solid #48BB78;
    color: #22543D;
}

.result-error {
    background: #FED7D7;
    border: 2px solid #F56565;
    color: #742A2A;
}

.verification-help {
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 15px;
}

.help-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-gray);
}

.help-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.help-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.help-item i {
    font-size: 2.5rem;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.help-item p {
    margin: 0;
    font-weight: 500;
}

.security-info {
    margin-top: 3rem;
}

.security-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.security-card i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.security-card h5 {
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.security-card p {
    margin: 0;
    color: #718096;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: white;
    padding: 100px 0;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4A5568;
}

.features-list {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--bg-white);
    border-radius: 10px;
    transition: var(--transition-normal);
}

.feature-item:hover {
    transform: translateX(10px);
    background: white;
    box-shadow: var(--shadow-sm);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--secondary-green);
}

.feature-item span {
    font-weight: 500;
    color: var(--text-gray);
}

.about-visual {
    position: relative;
    height: 600px;
}

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

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition-normal);
}

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

.stat-card-1 { animation: fadeInUp 0.8s ease 0.2s both; }
.stat-card-2 { animation: fadeInUp 0.8s ease 0.4s both; }
.stat-card-3 { animation: fadeInUp 0.8s ease 0.6s both; }
.stat-card-4 { animation: fadeInUp 0.8s ease 0.8s both; }

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 10px;
    color: white;
    font-size: 1.8rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
}

.stat-label {
    margin: 0;
    color: #718096;
    font-size: 0.9rem;
}

.about-image-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 100px;
    opacity: 0.2;
    z-index: 1;
}

.mission-card {
    padding: 2.5rem;
    background: var(--bg-white);
    border-radius: 20px;
    border-left: 5px solid var(--secondary-green);
    transition: var(--transition-normal);
}

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

.mission-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.mission-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.mission-text {
    color: #4A5568;
    line-height: 1.8;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: var(--light-gray);
    padding: 100px 0;
}

.testimonials-carousel {
    padding: 2rem 0;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-gray);
    font-style: italic;
    margin: 2rem 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
}

.author-avatar {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.author-name {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0;
}

.author-title {
    color: #718096;
    margin: 0.3rem 0;
}

.author-rating {
    color: #FFC107;
}

.carousel-control-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: var(--transition-normal);
}

.carousel-control-prev,
.carousel-control-next {
    width: auto;
}

.carousel-control-icon:hover {
    transform: scale(1.1);
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    opacity: 0.5;
}

.carousel-indicators button.active {
    opacity: 1;
}

.trust-badges {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.trust-badge-item {
    text-align: center;
    padding: 1.5rem;
    transition: var(--transition-normal);
}

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

.trust-badge-item i {
    font-size: 3rem;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.trust-badge-item p {
    margin: 0;
    font-weight: 600;
    color: var(--text-gray);
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    background: var(--gradient-primary);
    color: white;
    padding: 100px 0;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

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

.cta-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    animation: pulse 2s infinite;
}

.cta-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.cta-description {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.8;
}

.btn-cta-primary {
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary-blue);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
    color: var(--primary-blue);
}

.btn-cta-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.contact-option {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    transition: var(--transition-normal);
}

.contact-option:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.contact-option i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-option h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-option p {
    margin: 0;
    opacity: 0.9;
}

/* CTA Decorations */
.cta-decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.cta-decoration-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.cta-decoration-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite 2s;
}

.cta-decoration-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    animation: float 7s ease-in-out infinite 1s;
}

/* ===== FOOTER ===== */
.footer-section {
    background: var(--primary-blue);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    opacity: 0.9;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--secondary-green);
    transform: translateY(-5px);
    color: white;
}

.footer-widget-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--secondary-green);
    padding-left: 10px;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact i {
    color: var(--secondary-green);
    font-size: 1.2rem;
    margin-top: 3px;
}

.whatsapp-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition-fast);
}

.whatsapp-link:hover {
    color: var(--secondary-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    color: rgba(255, 255, 255, 0.8);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

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

.scroll-to-top:hover {
    transform: translateY(-5px);
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(79, 209, 197, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(79, 209, 197, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(79, 209, 197, 0);
    }
}

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

@keyframes inputFocus {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

/* Fade In on Scroll */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
    opacity: 0;
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
    opacity: 0;
    animation: fadeInRight 0.8s ease forwards;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
    .top-info-items {
        justify-content: center;
        gap: 15px;
        font-size: 13px;
    }
    
    .top-social-links {
        justify-content: center;
        margin-top: 10px;
    }
    
    .header-main {
        top: 0;
    }
    
    .top-info-bar {
        position: relative;
    }
    
    .nav-link {
        text-align: center;
        padding: 0.8rem 1rem !important;
    }
    
    .navbar-collapse {
        background: rgba(30, 58, 138, 0.95);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 10px;
        backdrop-filter: blur(10px);
    }
    
    .navbar-nav {
        align-items: stretch !important;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
    }
    
    .btn-header-cta {
        width: 100%;
        margin-top: 10px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-image-container {
        margin-top: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .about-visual {
        height: auto;
        margin-top: 3rem;
    }
}

@media (max-width: 767px) {
    .top-info-items {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-info-item {
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle,
    .section-subtitle {
        font-size: 1rem;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .floating-card {
        font-size: 0.85rem;
        padding: 10px 15px;
    }
    
    .hero-image-placeholder {
        width: 300px;
        height: 300px;
    }
    
    .hero-image-placeholder i {
        font-size: 100px;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .whatsapp-float,
    .scroll-to-top {
        right: 20px;
    }
    
    .scroll-to-top {
        bottom: 80px;
    }
}
/* ===== HERO CAROUSEL STYLES ===== */
.hero-section .carousel {
    height: 100vh;
}

.hero-section .carousel-inner,
.hero-section .carousel-item {
    height: 100%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    opacity: 1;
}

.hero-section .carousel-control-prev {
    left: 30px;
}

.hero-section .carousel-control-next {
    right: 30px;
}

.hero-section .carousel-control-prev-icon,
.hero-section .carousel-control-next-icon {
    width: 30px;
    height: 30px;
}

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero-section .carousel-indicators {
    bottom: 50px;
}

.hero-section .carousel-indicators button {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
    border-radius: 2px;
    transition: var(--transition-normal);
}

.hero-section .carousel-indicators button.active {
    background: white;
    width: 60px;
}

/* ===== CATEGORY CARDS ===== */
.category-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
    height: 100%;
}

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

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

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

.category-card h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.category-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.category-link {
    color: var(--secondary-green);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
}

.category-link:hover {
    color: var(--primary-blue);
}

.category-link i {
    margin-left: 5px;
    transition: var(--transition-normal);
}

.category-link:hover i {
    margin-left: 10px;
}

/* ===== FEATURE LIST ===== */
.feature-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-list-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.feature-list-content h5 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-list-content p {
    color: var(--text-gray);
    margin: 0;
}

/* ===== PRODUCT CARD HOME ===== */
.product-card-home {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-blue);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.product-card-home img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-normal);
}

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

.product-card-body {
    padding: 1.5rem;
}

.product-card-body h5 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-rating {
    color: #FFD700;
}

.product-rating span {
    color: var(--text-gray);
}

.product-price {
    font-size: 1.5rem;
    color: var(--secondary-green);
    font-weight: 700;
    margin: 1rem 0;
}

/* ===== TESTIMONIAL CARD HOME ===== */
.testimonial-card-home {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
}

.testimonial-card-home:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    color: #FFD700;
}

.testimonial-text {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 1.5rem;
    color: white;
}

.author-info h6 {
    margin: 0;
    color: var(--primary-blue);
    font-weight: 600;
}

.author-info small {
    color: var(--text-gray);
}

/* ===== GRADIENT BACKGROUND SECTION ===== */
.bg-gradient {
    background: var(--gradient-primary);
    color: white;
}

/* ===== PRODUCT DETAIL PAGE ===== */
.breadcrumb-section {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-item a {
    color: var(--primary-blue);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--secondary-green);
}

.product-images-container {
    position: sticky;
    top: 120px;
}

.main-product-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.main-product-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

.discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-blue);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.product-thumbnails {
    display: flex;
    gap: 15px;
    overflow-x: auto;
}

.thumbnail-item {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail-item:hover,
.thumbnail-item.active {
    border-color: var(--secondary-green);
    transform: scale(1.05);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-info {
    padding: 1rem;
}

.category-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--secondary-green);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: var(--font-primary);
}

.product-code {
    color: var(--text-gray);
    font-size: 14px;
}

.product-rating-detail {
    color: #FFD700;
    font-size: 18px;
}

.product-rating-detail span {
    color: var(--text-gray);
    font-size: 16px;
}

.product-price-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-green);
}

.original-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #999;
}

.save-price {
    padding: 5px 15px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.stock-status {
    font-size: 16px;
}

.product-short-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
}

.quantity-selector .input-group {
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
}

.quantity-selector .btn {
    border: none;
    background: white;
    color: var(--primary-blue);
}

.quantity-selector .btn:hover {
    background: var(--secondary-green);
    color: white;
}

.quantity-selector input {
    border: none;
    font-weight: 600;
}

.verification-info {
    border-left: 4px solid var(--secondary-green);
}

.verification-info code {
    font-size: 14px;
    color: var(--primary-blue);
    font-weight: 600;
}

.additional-product-info .info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

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

.additional-product-info i {
    color: var(--secondary-green);
    font-size: 20px;
}

.product-tabs {
    border-bottom: 3px solid var(--light-gray);
}

.product-tabs .nav-link {
    color: var(--text-gray);
    font-weight: 600;
    padding: 15px 25px;
    border: none;
    background: transparent;
    transition: all 0.3s ease;
}

.product-tabs .nav-link:hover {
    color: var(--secondary-green);
}

.product-tabs .nav-link.active {
    color: var(--primary-blue);
    background: white;
    border-bottom: 3px solid var(--secondary-green);
}

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

.features-list li {
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--light-gray);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list i {
    color: var(--secondary-green);
}

.review-summary {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

/* ===== MOBILE PREVIEW SECTION ===== */
.mobile-preview-showcase {
    position: relative;
}

.mobile-device-mockup {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.mobile-device-mockup:hover {
    transform: translateY(-10px);
}

.mobile-overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(79, 209, 197, 0.9));
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.mobile-features-list {
    font-size: 16px;
    color: var(--text-gray);
}

.feature-check-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #1E3A8A, #4FD1C5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
}
/* ===== FLOATING MOBILE PREVIEW BUTTON ===== */
.mobile-preview-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1E3A8A, #4FD1C5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: bounce-float 2s ease-in-out infinite;
}

.mobile-preview-floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(30, 58, 138, 0.6);
    color: white;
}

.mobile-preview-floating-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #1E3A8A, #4FD1C5);
    animation: pulse-ring 2s ease-out infinite;
    z-index: -1;
}

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

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .mobile-preview-floating-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}