/* =====================================================
   INDEX PAGE - MOBILE CSS (320px - 767px)
   Professional & Attractive Animated Styles
   ===================================================== */

@media screen and (max-width: 767px) {
    
    /* =====================================================
       HERO SECTION ANIMATIONS
       ===================================================== */
    
    .hero {
        min-height: 500px;
        padding: 2rem 1rem;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        position: relative;
        overflow: hidden;
    }
    
    .hero::before {
        content: '';
        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"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
        opacity: 0.2;
        animation: float 20s infinite linear;
    }
    
    @keyframes float {
        0% { transform: translateY(0) rotate(0deg); }
        100% { transform: translateY(-100px) rotate(360deg); }
    }
    
    .hero-background-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(102,126,234,0.7) 0%, rgba(118,75,162,0.6) 100%);
        z-index: 1;
    }
    
    .hero-content {
        position: relative;
        z-index: 3;
        animation: fadeInUp 1s ease-out;
        color: white;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
        animation: slideInLeft 0.8s ease-out 0.2s both;
        color: white;
        text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        animation: slideInLeft 0.8s ease-out 0.4s both;
        color: rgba(255,255,255,0.95);
        text-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
        justify-content: center;
        animation: fadeInUp 0.8s ease-out 0.6s both;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        flex: 1;
        min-width: 120px;
        max-width: 180px;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .hero-image {
        position: relative;
        z-index: 2;
        animation: fadeInRight 1s ease-out 0.8s both;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        margin-top: 1.5rem;
    }
    
    .hero-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(102,126,234,0.1) 0%, rgba(118,75,162,0.2) 100%);
        z-index: 1;
        pointer-events: none;
    }
    
    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
    }
    
    .hero-image:hover img {
        transform: scale(1.05);
    }
    
    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .hero-placeholder {
        width: 100%;
        height: 200px;
        background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 2rem;
        backdrop-filter: blur(10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        transition: transform 0.3s ease;
        animation: float-icon 3s ease-in-out infinite;
    }
    
    .hero-placeholder:hover {
        transform: scale(1.05);
    }
    
    .hero-placeholder i {
        margin-bottom: 0.5rem;
    }
    
    @keyframes float-icon {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }
    
    /* =====================================================
       OWNER MESSAGE SECTION - MOBILE FIRST
       ===================================================== */
    
    .owner-message-section {
        padding: 2.5rem 1rem;
        background: linear-gradient(to bottom, #ffffff, #f8f9fa);
        position: relative;
    }
    
    .owner-content {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    /* Section Header */
    .section-header {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.75rem;
        animation: fadeInDown 0.8s ease-out;
    }
    
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .title-underline {
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #007BFF 0%, #007BFF 50%, #00A859 50%, #00A859 100%);
        margin: 0 auto;
        border-radius: 3px;
        animation: expandWidth 1.2s ease-out 0.3s both;
    }
    
    @keyframes expandWidth {
        from { width: 0; }
        to { width: 80px; }
    }
    
    /* Message Content */
    .owner-message {
        background: white;
        padding: 1.5rem;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        animation: fadeIn 1s ease-out 0.5s both;
        max-width: 700px;
        margin: 0 auto;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    
    .message-intro {
        font-size: 1rem;
        font-weight: 600;
        color: #007BFF;
        margin-bottom: 1.25rem;
        text-align: left;
    }
    
    .owner-message p {
        font-size: 0.9rem;
        line-height: 1.7;
        color: #555;
        margin-bottom: 1rem;
        text-align: left;
    }
    
    .owner-message p strong {
        color: #2c3e50;
        font-weight: 700;
    }
    
    .message-closing {
        font-weight: 500;
        color: #2c3e50 !important;
        margin-top: 1.25rem !important;
    }
    
    /* Signature Section */
    .owner-signature {
        margin-top: 2.5rem;
        padding-top: 2rem;
        border-top: 2px solid #e9ecef;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .signature-names {
        text-align: left;
    }
    
    .owner-name {
        display: block;
        font-weight: 700;
        color: #2c3e50;
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
    
    .owner-role {
        display: block;
        color: #6c757d;
        font-size: 0.9rem;
        font-weight: 500;
    }
    
    
    /* =====================================================
       PRODUCT CATEGORIES
       ===================================================== */
    
    .categories {
        padding: 2.5rem 1rem;
        background: white;
    }
    
    .categories-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .category-card {
        background: white;
        border-radius: 12px;
        padding: 1.5rem 1.25rem;
        text-align: center;
        box-shadow: 0 3px 12px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        animation: fadeInUp 0.6s ease-out both;
    }
    
    .category-card:nth-child(1) { animation-delay: 0.1s; }
    .category-card:nth-child(2) { animation-delay: 0.2s; }
    .category-card:nth-child(3) { animation-delay: 0.3s; }
    
    .category-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,123,255,0.2);
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border-radius: 15px;
        color: white;
        font-size: 1.5rem;
        transition: transform 0.3s ease;
    }
    
    .category-card:hover .category-icon {
        transform: rotate(5deg) scale(1.05);
    }
    
    .category-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
        color: var(--text-dark);
    }
    
    .category-card p {
        color: var(--text-light);
        margin-bottom: 1.25rem;
        line-height: 1.6;
        font-size: 0.9rem;
    }
    
    .category-link {
        color: var(--primary-color);
        font-weight: 600;
        text-decoration: none;
        position: relative;
        transition: color 0.3s ease;
    }
    
    .category-link::after {
        content: '→';
        margin-left: 5px;
        transition: transform 0.3s ease;
        display: inline-block;
    }
    
    .category-link:hover::after {
        transform: translateX(5px);
    }
    
    /* =====================================================
       WHY CHOOSE US
       ===================================================== */
    
    .why-choose-us {
        padding: 2.5rem 1rem;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    }
    
    .features-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .feature-card {
        background: white;
        border-radius: 12px;
        padding: 1.5rem;
        text-align: center;
        box-shadow: 0 3px 12px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        animation: fadeInUp 0.6s ease-out both;
    }
    
    .feature-card:nth-child(1) { animation-delay: 0.1s; }
    .feature-card:nth-child(2) { animation-delay: 0.2s; }
    .feature-card:nth-child(3) { animation-delay: 0.3s; }
    .feature-card:nth-child(4) { animation-delay: 0.4s; }
    
    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,123,255,0.2);
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
        margin: 0 auto 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border-radius: 12px;
        color: white;
        font-size: 1.5rem;
        transition: transform 0.3s ease;
    }
    
    .feature-card:hover .feature-icon {
        transform: rotate(-5deg) scale(1.05);
    }
    
    /* =====================================================
       BUSINESS STATS
       ===================================================== */
    
    .business-stats {
        padding: 2.5rem 1rem;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
        position: relative;
        overflow: hidden;
    }
    
    .business-stats::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 50%, rgba(0,123,255,0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 50%, rgba(0,168,89,0.05) 0%, transparent 50%);
        pointer-events: none;
    }
    
    .business-stats .container {
        position: relative;
        z-index: 1;
    }
    
    .business-stats .section-title {
        color: #2c3e50;
        font-weight: 700;
        margin-bottom: 0.5rem;
        font-size: 1.5rem;
    }
    
    .business-stats .section-subtitle {
        color: #6c757d;
        font-size: 0.85rem;
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .stat-card {
        background: white;
        border-radius: 16px;
        padding: 1.25rem 1rem;
        text-align: center;
        transition: all 0.3s ease;
        animation: fadeInUp 0.6s ease-out both;
        box-shadow: 0 3px 15px rgba(0,0,0,0.08);
        border: 1px solid rgba(0,123,255,0.1);
        position: relative;
        overflow: hidden;
    }
    
    .stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, #007BFF, #00A859);
    }
    
    .stat-card:nth-child(1) { animation-delay: 0.1s; }
    .stat-card:nth-child(2) { animation-delay: 0.2s; }
    .stat-card:nth-child(3) { animation-delay: 0.3s; }
    .stat-card:nth-child(4) { animation-delay: 0.4s; }
    
    .stat-card:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 8px 25px rgba(0,123,255,0.2);
        border-color: rgba(0,123,255,0.3);
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #007BFF, #00A859);
        border-radius: 12px;
        font-size: 1.25rem;
        color: white;
        animation: pulse 2s infinite;
        box-shadow: 0 3px 10px rgba(0,123,255,0.3);
    }
    
    @keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); }
    }
    
    .stat-number {
        font-size: 1.75rem;
        font-weight: 700;
        display: block;
        margin-bottom: 0.25rem;
        background: linear-gradient(135deg, #007BFF, #00A859);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1.2;
    }
    
    .stat-label {
        font-size: 0.85rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 0.25rem;
        line-height: 1.3;
    }
    
    .stat-description {
        font-size: 0.7rem;
        color: #6c757d;
        line-height: 1.4;
    }
    
    /* =====================================================
       FEATURED PRODUCTS
       ===================================================== */
    
    .featured-products {
        padding: 2.5rem 1rem;
        background: white;
    }
    
    .products-showcase {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .product-showcase-card {
        background: white;
        border-radius: 16px;
        padding: 1.5rem;
        box-shadow: 0 3px 15px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        animation: fadeInUp 0.6s ease-out both;
    }
    
    .product-showcase-card:nth-child(1) { animation-delay: 0.1s; }
    .product-showcase-card:nth-child(2) { animation-delay: 0.2s; }
    .product-showcase-card:nth-child(3) { animation-delay: 0.3s; }
    
    .product-showcase-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,123,255,0.2);
    }
    
    .product-image {
        width: 100%;
        height: 200px;
        margin: 0 auto 1.5rem;
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        animation: fadeInUp 0.8s ease-out both;
    }
    
    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .product-showcase-card:hover .product-image img {
        transform: scale(1.1);
    }
    
    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0,123,255,0.1) 0%, rgba(0,168,89,0.1) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }
    
    .product-showcase-card:hover .image-overlay {
        opacity: 1;
    }
    
    @keyframes float-icon {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
    }
    
    .product-features {
        list-style: none;
        padding: 0;
        margin: 0.75rem 0;
    }
    
    .product-features li {
        padding: 0.4rem 0;
        color: var(--text-light);
        font-size: 0.9rem;
    }
    
    .product-features li i {
        color: var(--success-color);
        margin-right: 0.5rem;
    }
    
    .product-info {
        text-align: center;
    }
    
    .product-info h3 {
        font-size: 1.2rem;
        color: #2c3e50;
        margin-bottom: 0.75rem;
    }
    
    .product-info p {
        font-size: 0.9rem;
        color: #6c757d;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .product-btn {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        border-radius: 25px;
        font-weight: 600;
        transition: all 0.3s ease;
        margin-top: 0.5rem;
    }
    
    .product-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,123,255,0.3);
        color: white;
    }
    
    /* =====================================================
       SERVICE HIGHLIGHTS
       ===================================================== */
    
    .service-highlights {
        padding: 3rem 1rem;
        background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
        position: relative;
        overflow: hidden;
    }
    
    .service-highlights::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 10% 20%, rgba(0,123,255,0.05) 0%, transparent 50%),
            radial-gradient(circle at 90% 80%, rgba(0,168,89,0.05) 0%, transparent 50%);
        pointer-events: none;
    }
    
    .service-highlights .container {
        position: relative;
        z-index: 1;
    }
    
    .service-highlights .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        color: #2c3e50;
    }
    
    .service-highlights .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
        color: #6c757d;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .service-card {
        background: white;
        border-radius: 16px;
        padding: 1.75rem 1.5rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        border: 1px solid rgba(0,123,255,0.05);
        transition: all 0.3s ease;
        animation: fadeInUp 0.6s ease-out both;
        position: relative;
        overflow: hidden;
    }
    
    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #007BFF, #00A859);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }
    
    .service-card:hover::before {
        transform: scaleY(1);
    }
    
    .service-card:nth-child(1) { animation-delay: 0.1s; }
    .service-card:nth-child(2) { animation-delay: 0.2s; }
    .service-card:nth-child(3) { animation-delay: 0.3s; }
    .service-card:nth-child(4) { animation-delay: 0.4s; }
    .service-card:nth-child(5) { animation-delay: 0.5s; }
    .service-card:nth-child(6) { animation-delay: 0.6s; }
    
    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0,123,255,0.2);
        border-color: rgba(0,123,255,0.2);
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border-radius: 16px;
        color: white;
        font-size: 1.5rem;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,123,255,0.3);
    }
    
    .service-card:hover .service-icon {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 8px 25px rgba(0,123,255,0.4);
    }
    
    .service-card h3 {
        font-size: 1.15rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.75rem;
        text-align: center;
    }
    
    .service-card p {
        font-size: 0.9rem;
        color: #6c757d;
        line-height: 1.7;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .service-features {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 1rem;
        justify-content: center;
    }
    
    .feature-tag {
        background: linear-gradient(135deg, rgba(0,123,255,0.08), rgba(0,168,89,0.08));
        padding: 0.4rem 0.85rem;
        border-radius: 25px;
        font-size: 0.75rem;
        color: #2c3e50;
        font-weight: 600;
        border: 1px solid rgba(0,123,255,0.15);
        transition: all 0.3s ease;
    }
    
    .service-card:hover .feature-tag {
        background: linear-gradient(135deg, rgba(0,123,255,0.12), rgba(0,168,89,0.12));
        border-color: rgba(0,123,255,0.3);
        transform: translateY(-2px);
    }
    
    /* =====================================================
       INDUSTRY EXPERTISE
       ===================================================== */
    
    .industry-expertise {
        padding: 3rem 1rem;
        background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
        position: relative;
        overflow: hidden;
    }
    
    .industry-expertise::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 30%, rgba(0,123,255,0.04) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(0,168,89,0.04) 0%, transparent 50%);
        pointer-events: none;
    }
    
    .industry-expertise .container {
        position: relative;
        z-index: 1;
    }
    
    .expertise-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .expertise-text h2 {
        font-size: 1.5rem;
        color: #2c3e50;
        margin-bottom: 0.75rem;
        text-align: center;
    }
    
    .expertise-intro {
        font-size: 0.95rem;
        line-height: 1.7;
        color: #6c757d;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .expertise-points {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .expertise-point {
        display: flex;
        gap: 1rem;
        padding: 1.5rem;
        background: white;
        border-radius: 16px;
        box-shadow: 0 3px 15px rgba(0,0,0,0.06);
        border: 1px solid rgba(0,123,255,0.05);
        transition: all 0.3s ease;
        animation: fadeInLeft 0.6s ease-out both;
    }
    
    .expertise-point:nth-child(1) { animation-delay: 0.1s; }
    .expertise-point:nth-child(2) { animation-delay: 0.2s; }
    .expertise-point:nth-child(3) { animation-delay: 0.3s; }
    
    .expertise-point:hover {
        transform: translateX(5px);
        box-shadow: 0 8px 25px rgba(0,123,255,0.15);
        border-color: rgba(0,123,255,0.2);
    }
    
    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .point-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, rgba(0,123,255,0.1), rgba(0,168,89,0.1));
        border-radius: 12px;
        color: var(--primary-color);
        font-size: 1.5rem;
        transition: all 0.3s ease;
    }
    
    .expertise-point:hover .point-icon {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        transform: scale(1.1);
    }
    
    .point-content h3 {
        font-size: 1.1rem;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    
    .point-content p {
        font-size: 0.9rem;
        color: #6c757d;
        line-height: 1.6;
        margin: 0;
    }
    
    .expertise-visual {
        margin-top: 2rem;
    }
    
    .expertise-image {
        width: 100px;
        height: 100px;
        margin: 0 auto 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border-radius: 50%;
        color: white;
        font-size: 2.5rem;
        box-shadow: 0 8px 25px rgba(0,123,255,0.3);
        animation: pulse-scale 3s ease-in-out infinite;
    }
    
    @keyframes pulse-scale {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); }
    }
    
    .expertise-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .mini-stat {
        text-align: center;
        background: white;
        padding: 1.25rem 0.75rem;
        border-radius: 16px;
        box-shadow: 0 3px 15px rgba(0,0,0,0.06);
        border: 1px solid rgba(0,123,255,0.05);
        transition: all 0.3s ease;
        animation: fadeInUp 0.6s ease-out both;
    }
    
    .mini-stat:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,123,255,0.2);
        border-color: rgba(0,123,255,0.2);
    }
    
    .mini-stat:nth-child(1) { animation-delay: 0.1s; }
    .mini-stat:nth-child(2) { animation-delay: 0.2s; }
    .mini-stat:nth-child(3) { animation-delay: 0.3s; }
    
    .mini-number {
        display: block;
        font-size: 1.5rem;
        font-weight: 700;
        background: linear-gradient(135deg, #007BFF, #00A859);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 0.25rem;
    }
    
    .mini-label {
        font-size: 0.75rem;
        color: #6c757d;
        font-weight: 600;
    }
    
    /* =====================================================
       SOCIAL MEDIA SECTION
       ===================================================== */
    
    .social-media-section {
        padding: 3rem 1rem;
        background: white;
        position: relative;
        overflow: hidden;
    }
    
    .social-media-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 30%, rgba(0,123,255,0.03) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(0,168,89,0.03) 0%, transparent 50%);
        pointer-events: none;
    }
    
    .social-media-section .container {
        position: relative;
        z-index: 1;
    }
    
    .social-media-section .section-title {
        color: #2c3e50;
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .social-media-section .section-subtitle,
    .social-subtitle {
        color: #6c757d;
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .social-platforms {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .social-card {
        background: white;
        border-radius: 16px;
        padding: 1.5rem;
        text-align: center;
        transition: all 0.3s ease;
        animation: fadeInUp 0.6s ease-out both;
        border: 2px solid rgba(0,123,255,0.1);
        box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    }
    
    .social-card:nth-child(1) { animation-delay: 0.1s; }
    .social-card:nth-child(2) { animation-delay: 0.2s; }
    .social-card:nth-child(3) { animation-delay: 0.3s; }
    
    .social-card:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 10px 30px rgba(0,123,255,0.2);
        border-color: rgba(0,123,255,0.3);
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, rgba(0,123,255,0.1), rgba(0,168,89,0.1));
        border-radius: 50%;
        font-size: 1.5rem;
        transition: all 0.3s ease;
    }
    
    .social-card.facebook .social-icon {
        color: #1877F2;
    }
    
    .social-card.youtube .social-icon {
        color: #FF0000;
    }
    
    .social-card.instagram .social-icon {
        color: #E4405F;
    }
    
    .social-card:hover .social-icon {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        transform: scale(1.15) rotate(5deg);
    }
    
    .social-card h3 {
        color: #2c3e50;
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        font-weight: 700;
    }
    
    .social-card p {
        display: none;
    }
    
    .social-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        border-radius: 25px;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        margin-top: 0.75rem;
    }
    
    .social-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 20px rgba(0,123,255,0.4);
        color: white;
    }
    
    .social-btn i {
        font-size: 1rem;
    }
    
    /* =====================================================
       CUSTOMER TESTIMONIALS
       ===================================================== */
    
    .customer-testimonials {
        padding: 3rem 1rem;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
        position: relative;
        overflow: hidden;
    }
    
    .customer-testimonials::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
            radial-gradient(circle at 20% 30%, rgba(0,123,255,0.03) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(0,168,89,0.03) 0%, transparent 50%);
        pointer-events: none;
    }
    
    .customer-testimonials .section-header {
        text-align: center;
        margin-bottom: 2rem;
        position: relative;
        z-index: 1;
    }
    
    .section-badge {
        display: inline-block;
        padding: 0.4rem 1rem;
        background: linear-gradient(135deg, rgba(0,123,255,0.1), rgba(0,168,89,0.1));
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .customer-testimonials .section-header h2 {
        font-size: 1.5rem;
        color: #2c3e50;
        margin-bottom: 0.5rem;
        font-weight: 700;
    }
    
    .customer-testimonials .section-header p {
        font-size: 0.85rem;
        color: #6c757d;
    }
    
    .testimonials-grid {
        display: flex;
        gap: 1.5rem;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 1rem 0 2rem;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-color) transparent;
    }
    
    .testimonials-grid::-webkit-scrollbar {
        height: 8px;
    }
    
    .testimonials-grid::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .testimonials-grid::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 4px;
    }
    
    .testimonial-card {
        background: white;
        border-radius: 16px;
        padding: 1.5rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        animation: fadeInUp 0.6s ease-out both;
        border: 1px solid rgba(0,123,255,0.05);
        flex: 0 0 90%;
        min-width: 280px;
    }
    
    .testimonial-card:nth-child(1) { animation-delay: 0.1s; }
    .testimonial-card:nth-child(2) { animation-delay: 0.2s; }
    .testimonial-card:nth-child(3) { animation-delay: 0.3s; }
    .testimonial-card:nth-child(4) { animation-delay: 0.4s; }
    .testimonial-card:nth-child(5) { animation-delay: 0.5s; }
    .testimonial-card:nth-child(6) { animation-delay: 0.6s; }
    .testimonial-card:nth-child(7) { animation-delay: 0.7s; }
    .testimonial-card:nth-child(8) { animation-delay: 0.8s; }
    .testimonial-card:nth-child(9) { animation-delay: 0.9s; }
    
    .testimonial-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 15px 40px rgba(0,123,255,0.15);
        border-color: rgba(0,123,255,0.2);
    }
    
    .quote-icon {
        font-size: 1.5rem;
        color: var(--primary-color);
        margin-bottom: 1rem;
        opacity: 0.25;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.7;
        color: #495057;
        margin-bottom: 1.25rem;
    }
    
    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(0,123,255,0.1);
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(0,123,255,0.15), rgba(0,168,89,0.15));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        color: var(--primary-color);
        flex-shrink: 0;
    }
    
    .author-info h4 {
        font-size: 0.95rem;
        color: #2c3e50;
        margin-bottom: 0.25rem;
        font-weight: 600;
    }
    
    .author-info p {
        font-size: 0.8rem;
        color: #6c757d;
        margin: 0;
    }
    
    /* =====================================================
       INTRO SECTION
       ===================================================== */
    
    .intro {
        padding: 2.5rem 1rem;
        background: linear-gradient(to bottom, white, #f8f9fa);
        text-align: center;
    }
    
    .intro-content h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        animation: fadeIn 1s ease-out;
    }
    
    .intro-content p {
        font-size: 0.9rem;
        line-height: 1.7;
        max-width: 100%;
        margin: 0 auto;
        animation: fadeIn 1s ease-out 0.3s both;
    }
    
    /* =====================================================
       BUTTON ENHANCEMENTS
       ===================================================== */
    
    /* Button styles are inherited from styles.css */
    
    /* Hero section buttons get special treatment */
    .hero .btn-primary,
    .hero .btn-secondary {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        position: relative;
        overflow: hidden;
        white-space: nowrap;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        text-shadow: none;
    }
    
    .hero .btn-primary {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        box-shadow: 0 8px 20px rgba(0,123,255,0.3);
    }
    
    .hero .btn-primary:hover {
        box-shadow: 0 12px 30px rgba(0,123,255,0.5);
        transform: translateY(-3px);
    }
    
    .hero .btn-secondary {
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(10px);
        border: 2px solid white;
        color: white;
        box-shadow: 0 8px 20px rgba(255,255,255,0.2);
    }
    
    .hero .btn-secondary:hover {
        background: rgba(255,255,255,0.25);
        box-shadow: 0 12px 30px rgba(255,255,255,0.3);
        transform: translateY(-3px);
    }
    
    .btn-primary::before,
    .btn-secondary::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:hover::before,
    .btn-secondary:hover::before {
        width: 300px;
        height: 300px;
    }
    
    .btn-primary span,
    .btn-secondary span {
        position: relative;
        z-index: 1;
    }
    
}

