/**
 * TOMKOLGLOBAL - PROFESSIONAL FRONTEND CSS
 * 20 Professional Features Styling
 */

:root {
    --primary-color: #1a73e8;
    --secondary-color: #34a853;
    --accent-color: #fbbc04;
    --dark-color: #202124;
    --light-color: #f8f9fa;
    --border-color: #dadce0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    
    /* Light Mode Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --text-primary: #333;
    --text-secondary: #666;
}

/* Dark Mode */
html[data-theme="dark"] {
    --primary-color: #64b5f6;
    --secondary-color: #81c784;
    --accent-color: #ffd54f;
    --dark-color: #1a1a1a;
    --light-color: #2a2a2a;
    --border-color: #404040;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.5);
    
    /* Dark Mode Colors */
    --bg-primary: #0a0e27;
    --bg-secondary: #1a1f3a;
    --text-primary: #e0e0e0;
    --text-secondary: #999;
}

/* FEATURE 1: PRELOADER */
.preloader-advanced {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Global Transitions for Dark Mode */
html, body, * {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

html {
    background: var(--bg-primary);
    color: var(--text-primary);
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
}

.preloader-advanced.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    margin-top: 20px;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* FEATURE 2: ADVANCED HERO SLIDER */
.hero-slider-advanced {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.slide-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #34a853, #1a73e8);
    animation: progress 5s linear forwards;
    z-index: 3;
}

@keyframes progress {
    from { width: 0%; }
    to { width: 100%; }
}

.slide-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    z-index: 3;
}

.slide-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #34a853;
    margin-bottom: 10px;
}

.slide-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 700px;
}

.slide-desc {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 4;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev { left: 30px; }
.slider-btn.next { right: 30px; }

.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 4;
}

.indicator {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.indicator.active {
    background: #fff;
    width: 50px;
}

/* FEATURE 3: TRUST INDICATORS */
.trust-indicators-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    text-align: center;
    animation: fadeInUp 0.6s ease;
}

.badge-item i {
    font-size: 36px;
    color: #34a853;
}

/* FEATURE 4: ANIMATED STATS */
.stats-section-advanced {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a73e8 0%, #34a853 100%);
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    font-size: 40px;
    opacity: 0.8;
}

.stat-content h3 {
    font-size: 40px;
    font-weight: 700;
    margin: 0;
}

.stat-content p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

/* FEATURE 5: MARKET REACH */
.market-reach-section {
    padding: 60px 0;
}

.market-map-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 12px;
    padding: 60px 40px;
}

.market-regions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.region-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.region-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #e8f5e9 0%, #e3f2fd 100%);
}

.region-item i {
    font-size: 28px;
    color: #34a853;
}

/* FEATURE 6: QUALITY SECTION */
.quality-section {
    padding: 80px 0;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.quality-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.quality-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.quality-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a73e8, #34a853);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 28px;
}

.quality-card h3 {
    margin: 0 0 10px 0;
    color: #202124;
}

.quality-card p {
    color: #5f6368;
    font-size: 14px;
}

/* FEATURE 7: PROCESS TIMELINE */
.process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a73e8, #34a853);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    margin: 0 0 10px 0;
}

.process-step p {
    color: #5f6368;
    font-size: 14px;
    margin: 0;
}

/* FEATURE 8 & 9: PRODUCTS GRID */
.products-section-advanced {
    padding: 80px 0;
}

.products-grid-advanced {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-card-advanced {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.product-card-advanced:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.product-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card-advanced:hover .product-card-img-wrapper img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-advanced:hover .product-overlay {
    opacity: 1;
}

.product-card-body-advanced {
    padding: 20px;
}

.product-card-body-advanced h3 {
    margin: 0 0 10px 0;
    color: #202124;
}

.product-card-body-advanced p {
    color: #5f6368;
    font-size: 13px;
    margin: 0 0 15px 0;
}

.product-meta {
    display: flex;
    gap: 10px;
}

.badge {
    background: #e3f2fd;
    color: #1a73e8;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
}

/* FEATURE 10: SUSTAINABILITY */
.sustainability-section {
    padding: 80px 0;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.sustainability-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    transition: all 0.3s ease;
}

.sustainability-item:hover {
    transform: translateY(-5px);
}

.sustainability-item i {
    font-size: 36px;
    color: #34a853;
    margin-bottom: 15px;
}

.sustainability-item h3 {
    margin: 0 0 10px 0;
    color: #202124;
}

.sustainability-item p {
    color: #5f6368;
    font-size: 14px;
    margin: 0;
}

/* FEATURE 11: TEAM GRID */
.team-section-advanced {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-grid-advanced {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.team-card-advanced {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.team-card-advanced:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card-advanced:hover .team-img {
    transform: scale(1.1);
}

.team-social-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
    padding: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.team-card-advanced:hover .team-social-overlay {
    transform: translateY(0);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #34a853;
    transform: scale(1.2);
}

.team-card-body-advanced {
    padding: 25px;
}

.team-card-body-advanced h3 {
    margin: 0 0 5px 0;
}

.team-role {
    color: #34a853;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}

.team-card-body-advanced p {
    color: #5f6368;
    font-size: 14px;
    margin: 0;
}

/* FEATURE 12: CERTIFICATIONS */
.certifications-section {
    padding: 60px 0;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.cert-item i {
    font-size: 32px;
    color: #1a73e8;
}

.cert-item p {
    margin: 0;
    font-size: 12px;
    color: #202124;
    font-weight: 600;
}

/* FEATURE 13: TESTIMONIALS */
.testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-carousel {
    display: flex;
    overflow: hidden;
    border-radius: 12px;
}

.testimonial-card {
    flex: 1;
    background: #fff;
    padding: 40px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s ease;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-stars {
    color: #fbbc04;
    margin-bottom: 20px;
}

.testimonial-stars i {
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #202124;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: #202124;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #5f6368;
    font-size: 14px;
}

/* FEATURE 14: EXPERTISE */
.expertise-section {
    padding: 80px 0;
}

.expertise-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.expertise-card {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.expertise-number {
    font-size: 48px;
    font-weight: 700;
    color: #34a853;
    margin-bottom: 10px;
}

.expertise-card h3 {
    margin: 0 0 10px 0;
    color: #202124;
}

.expertise-card p {
    color: #5f6368;
    font-size: 14px;
    margin: 0;
}

/* FEATURE 15: NEWSLETTER */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a73e8 0%, #34a853 100%);
    color: #fff;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin: 30px 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
}

.newsletter-form button {
    padding: 12px 30px;
    background: #fff;
    color: #1a73e8;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.form-notice {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    margin: 0;
}

/* FEATURE 16: BENEFITS */
.benefits-section {
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, #e3f2fd 0%, #e8f5e9 100%);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-item i {
    font-size: 36px;
    color: #34a853;
    margin-bottom: 15px;
}

.benefit-item h3 {
    margin: 0 0 10px 0;
    color: #202124;
}

.benefit-item p {
    color: #5f6368;
    font-size: 14px;
    margin: 0;
}

/* FEATURE 17: CTA ADVANCED */
.cta-section-advanced {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a73e8 0%, #34a853 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    margin: 0 0 20px 0;
}

.cta-content p {
    font-size: 18px;
    margin: 0 0 40px 0;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* FEATURE 18: PARTNERS */
.partners-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
}

.partner-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    font-size: 32px;
    color: #34a853;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    color: #1a73e8;
}

/* FEATURE 19: CONTACT FORM */
.contact-quick-section {
    padding: 80px 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.contact-form input.invalid,
.contact-form textarea.invalid {
    border-color: #d32f2f;
}

.contact-form input.valid,
.contact-form textarea.valid {
    border-color: #34a853;
}

.contact-form button {
    padding: 12px 30px;
    background: linear-gradient(135deg, #1a73e8, #34a853);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

/* FEATURE 20: EXPORT CAPABILITIES */
.export-capabilities-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.capability-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top: 3px solid #34a853;
}

.capability-card i {
    font-size: 40px;
    color: #1a73e8;
    margin-bottom: 20px;
}

.capability-card h3 {
    margin: 0 0 10px 0;
    color: #202124;
}

.capability-card p {
    color: #5f6368;
    font-size: 14px;
    margin: 0;
}

/* ANIMATIONS */
.animate-up {
    animation: slideUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-animate {
    opacity: 0;
}

.scroll-animate.animated {
    animation: fadeInUp 0.6s ease forwards;
}

/* TOOLTIP */
.tooltip-popup {
    position: fixed;
    background: #202124;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 9998;
}

.tooltip-popup.visible {
    opacity: 1;
}

/* NOTIFICATIONS */
.notification {
    position: fixed;
    bottom: -100px;
    right: 20px;
    padding: 15px 20px;
    background: #fff;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    transition: bottom 0.3s ease;
    z-index: 9997;
}

.notification.show {
    bottom: 20px;
}

.notification-success {
    border-left: 4px solid #34a853;
    color: #34a853;
}

.notification-error {
    border-left: 4px solid #d32f2f;
    color: #d32f2f;
}

.notification-info {
    border-left: 4px solid #1a73e8;
    color: #1a73e8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .slide-title {
        font-size: 36px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .slider-btn.prev { left: 10px; }
    .slider-btn.next { right: 10px; }
    
    .stats-grid, .quality-grid, .team-grid-advanced {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

/* SCROLLED STATE */
body.scrolled {
    background: #fff;
}

/* UTILITY CLASSES */
.section {
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: #e3f2fd;
    color: #1a73e8;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header h2 {
    font-size: 40px;
    margin: 0 0 15px 0;
    color: #202124;
}

.section-header p {
    font-size: 16px;
    color: #5f6368;
    margin: 0;
}

.section-bg {
    background: #f8f9fa;
}

.text-center {
    text-align: center;
}

.btn-lg {
    padding: 14px 40px;
    font-size: 16px;
}

.lazy-loaded {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
