:root {
    /* Primary Color Palette - Pastel High-Contrast Colors */
    --primary-color: #4A90E2;
    --primary-light: #7BB3F0;
    --primary-dark: #2E5A87;
    
    --secondary-color: #50C878;
    --secondary-light: #7DD693;
    --secondary-dark: #3A9B5C;
    
    --accent-color: #F4A261;
    --accent-light: #F7B584;
    --accent-dark: #D8834A;
    
    --neutral-color: #6C757D;
    --neutral-light: #8D9BA8;
    --neutral-dark: #495057;
    
    --background-color: #F8F9FA;
    --background-light: #FFFFFF;
    --background-dark: #E9ECEF;
    
    /* Typography */
    --font-size-base: 1rem;
    --font-size-small: 0.875rem;
    --font-size-large: 1.125rem;
    --line-height-base: 1.5;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--neutral-dark);
    background-color: var(--background-color);
    overflow-x: hidden;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Header Styles */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--neutral-dark);
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-color) 100%);
    padding-top: 100px;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    padding-top: 200px;
}

.hero-section .lead {
    font-size: 1.25rem;
    color: var(--secondary-color);
    font-weight: 500;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.bg-light {
    background-color: var(--background-light);
}

/* Card Styles */
.card {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.card-text {
    color: var(--neutral-color);
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Service Items */
.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Team Section */
#team .card-img-top {
    height: 250px;
    object-fit: cover;
}

/* Process Section */
.process-step {
    background-color: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Gallery Section */
#gallery img {
    transition: transform 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* Form Styles */
.form-control {
    border-color: var(--neutral-light);
    border-radius: 0.375rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

/* Footer Styles */
#footer {
    background-color: var(--neutral-dark);
    color: var(--background-light);
}

#footer h5, #footer h6 {
    color: var(--background-light);
    font-weight: 600;
}

#footer .text-white-50 {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer .text-white-50:hover {
    color: var(--background-light);
}

/* Typography Adjustments */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    color: var(--primary-dark);
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1.1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--secondary-color);
}

/* Price Display */
.text-primary {
    color: var(--primary-color);
}

/* Icon Colors */
.fa-2x, .fa-3x {
    color: var(--primary-color);
}

/* Breadcrumb */
.breadcrumb {
    background-color: transparent;
    padding: 0;
}

.breadcrumb-item img {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.breadcrumb-item img:hover {
    opacity: 1;
}

/* Animation Classes for Sal.js */
.sal-animate {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Utility Classes */
.text-muted {
    color: var(--neutral-color);
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* Custom spacing */
.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

/* Ensure proper spacing for fixed header */
body {
    padding-top: 76px;
}

/* Services grid alignment */
#services .card {
    height: 100%;
}

#services .card-body {
    display: flex;
    flex-direction: column;
}

#services .mt-auto {
    margin-top: auto;
}

/* FAQ section styling */
#faq .card {
    border-left: 4px solid var(--primary-color);
}

/* Contact form styling */
#contact .needs-validation .form-control:invalid {
    border-color: #dc3545;
}

#contact .needs-validation .form-control:valid {
    border-color: var(--secondary-color);
}

/* Team member cards */
#team .card {
    transition: transform 0.2s ease;
}

#team .card:hover {
    transform: translateY(-5px);
}

/* Reviews section */
#reviews .blockquote-footer {
    font-size: 0.875rem;
    color: var(--neutral-color);
}

/* Process section circles */
.bg-primary {
    background-color: var(--primary-color);
}

/* Timeline cards */
#timeline .card {
    border-top: 3px solid var(--accent-color);
}

/* Career section */
#career .card {
    border-left: 3px solid var(--secondary-color);
}

/* Core info icons */
#coreinfo .fa-2x {
    color: var(--accent-color);
}

/* Blog section */
#blog .card-img-top {
    height: 180px;
    object-fit: cover;
}

/* Gallery lightbox preparation */
#gallery a {
    display: block;
    overflow: hidden;
    border-radius: 0.375rem;
}

/* Responsive adjustments handled in responsive.css */ 



.social-icons-grid {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 0.7;
}

.social-link:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px currentColor;
    box-shadow: 0 0 20px currentColor;
}

.facebook-link {
    border-color: #1877f2;
    color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.linkedin-link {
    border-color: #0a66c2;
    color: #0a66c2;
    background: rgba(10, 102, 194, 0.1);
}

.instagram-link {
    border-color: #e4405f;
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.x-link {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 22px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}




.org-social-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary, #333);
}

.org-social-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.org-social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.org-social-link:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: white;
    text-decoration: none;
}

/* Organization Social Networks Colors */
.org-facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.org-instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.org-linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.org-x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.org-x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.org-x-link i {
    display: none;
}

.org-youtube-link {
    background: linear-gradient(135deg, #ff0000, #ff4444);
}

.org-medium-link {
    background: linear-gradient(135deg, #000000, #1a1a1a);
}

.org-tiktok-link {
    background: linear-gradient(135deg, #fe2c55, #25f4ee);
}

.org-pinterest-link {
    background: linear-gradient(135deg, #bd081c, #e60023);
}

.org-telegram-link {
    background: linear-gradient(135deg, #0088cc, #229ed9);
}

.org-discord-link {
    background: linear-gradient(135deg, #5865f2, #7289da);
}

@media (max-width: 768px) {
    .org-social-grid {
        gap: 8px;
    }
    
    .org-social-link {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .org-social-title {
        font-size: 16px;
    }
}




.newsletter-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary, #333);
}

.newsletter-subtitle {
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
    line-height: 1.4;
}

.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 350px;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 3px;
    overflow: hidden;
}

.newsletter-input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    font-size: 14px;
    outline: none;
    background: white;
}

.newsletter-input::placeholder {
    color: #aaa;
}

.newsletter-button {
    padding: 10px 18px;
    background: #333;
    color: white;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-button:hover {
    background: #555;
}

.newsletter-success {
    display: none;
    margin-top: 15px;
    padding: 12px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: #333;
    font-size: 13px;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-success.show {
    display: block;
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
        max-width: 280px;
    }
}



/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}



/* Organization Social Links */
.org-social-links {
    margin: 25px 0;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.org-social-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary, #333);
}

.org-social-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.org-social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.org-social-link:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: white;
    text-decoration: none;
}

/* Organization Social Networks Colors */
.org-facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.org-instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.org-linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.org-x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.org-x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.org-x-link i {
    display: none;
}

.org-youtube-link {
    background: linear-gradient(135deg, #ff0000, #ff4444);
}

.org-medium-link {
    background: linear-gradient(135deg, #000000, #1a1a1a);
}

.org-tiktok-link {
    background: linear-gradient(135deg, #fe2c55, #25f4ee);
}

.org-pinterest-link {
    background: linear-gradient(135deg, #bd081c, #e60023);
}

.org-telegram-link {
    background: linear-gradient(135deg, #0088cc, #229ed9);
}

.org-discord-link {
    background: linear-gradient(135deg, #5865f2, #7289da);
}

@media (max-width: 768px) {
    .org-social-grid {
        gap: 8px;
    }
    
    .org-social-link {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .org-social-title {
        font-size: 16px;
    }
}



/* Newsletter Form - Minimal Style */
.newsletter-section {
    margin: 25px 0;
    padding: 20px 0;
    text-align: center;
}

.newsletter-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary, #333);
}

.newsletter-subtitle {
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
    line-height: 1.4;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 350px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
    outline: none;
    background: white;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    border-color: #007bff;
}

.newsletter-input::placeholder {
    color: #aaa;
}

.newsletter-button {
    padding: 12px 18px;
    background: #333;
    color: white;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.newsletter-button:hover {
    background: #555;
}

.newsletter-success {
    display: none;
    margin-top: 15px;
    padding: 12px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: #333;
    font-size: 13px;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-success.show {
    display: block;
}

@media (max-width: 768px) {
    .newsletter-form {
        max-width: 280px;
    }
}



/* Live Chat FAQ Widget - Modern Style */
.website-livechat-widget {
    position: fixed !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 300px !important;
    background: linear-gradient(145deg, #667eea 0%, #764ba2 100%) !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2) !important;
    z-index: 999999 !important;
    color: white !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    backdrop-filter: blur(10px) !important;
}

.website-livechat-header {
    padding: 15px 20px !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.website-livechat-title {
    font-size: 16px !important;
    font-weight: 600 !important;
    margin: 0 !important;
    color: white !important;
}

.website-livechat-toggle {
    background: none !important;
    border: none !important;
    color: white !important;
    font-size: 18px !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    user-select: none !important;
    padding: 5px !important;
    border-radius: 3px !important;
    transition: background 0.3s ease !important;
    pointer-events: auto !important;
    user-select: none !important;
}

.website-livechat-toggle:hover {
    background: rgba(255,255,255,0.1) !important;
}

.website-livechat-content {
    padding: 15px 20px 20px !important;
    max-height: 400px !important;
    overflow-y: auto !important;
}

.website-livechat-content.hidden {
    display: none !important;
}

.website-faq-item {
    margin-bottom: 12px !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    padding-bottom: 12px !important;
}

.website-faq-item:last-child {
    border-bottom: none !important;
    margin-bottom: 0 !important;
}

.website-faq-question {
    font-size: 14px !important;
    font-weight: 500 !important;
    margin-bottom: 6px !important;
    color: white !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    user-select: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    pointer-events: auto !important;
    user-select: none !important;
}

.website-faq-question:hover {
    color: rgba(255,255,255,0.8) !important;
}

.website-faq-answer {
    font-size: 13px !important;
    line-height: 1.4 !important;
    color: rgba(255,255,255,0.9) !important;
    display: none !important;
    padding-top: 6px !important;
}

.website-faq-answer.show {
    display: block !important;
}

.website-faq-icon {
    transition: transform 0.3s ease !important;
    font-size: 12px !important;
}

.website-faq-icon.rotated {
    transform: rotate(180deg) !important;
}

@media (max-width: 768px) {
    .website-livechat-widget {
        display: none !important;
    }
}



/* Google Maps Section */
.website-google-maps-section {
    padding: 60px 0 !important;
    background: #f8f9fa !important;
    margin: 0 !important;
    border-top: 1px solid #e0e0e0 !important;
}

.website-maps-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
}

.website-maps-title {
    text-align: center !important;
    font-size: 28px !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    color: #333333 !important;
    font-family: inherit !important;
}

.website-maps-subtitle {
    text-align: center !important;
    font-size: 16px !important;
    color: #666666 !important;
    margin-bottom: 40px !important;
    font-family: inherit !important;
}

.website-google-map {
    width: 100% !important;
    height: 400px !important;
    border: none !important;
    border-radius: 10px !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1) !important;
}

@media (max-width: 768px) {
    .website-google-maps-section {
        padding: 40px 0 !important;
    }
    
    .website-maps-title {
        font-size: 24px !important;
    }
    
    .website-google-map {
        height: 300px !important;
    }
}



/* CTA Section - Gradient Style */
.website-cta-section {
    padding: 60px 0 !important;
    background: linear-gradient(45deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%) !important;
    color: #333333 !important;
    text-align: center !important;
    margin: 0 !important;
    position: relative !important;
}

.website-cta-container {
    max-width: 750px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.website-cta-title {
    font-size: 28px !important;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
    color: #333333 !important;
    font-family: inherit !important;
}

.website-cta-subtitle {
    font-size: 17px !important;
    margin-bottom: 32px !important;
    color: #555555 !important;
    font-family: inherit !important;
}

.website-cta-button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 16px 30px !important;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 25px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border: none !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1) !important;
}

.website-cta-button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2) !important;
    color: white !important;
    text-decoration: none !important;
}

.website-cta-phone-icon {
    font-size: 18px !important;
}

@media (max-width: 768px) {
    .website-cta-section {
        padding: 45px 0 !important;
    }
    
    .website-cta-title {
        font-size: 24px !important;
    }
}



/* Security Badges */
.website-security-badges {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
    padding: 25px 0 !important;
    flex-wrap: wrap !important;
    background: #f8f9fa !important;
    border-top: 1px solid #e0e0e0 !important;
    border-bottom: 1px solid #e0e0e0 !important;
}

.website-security-badge {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 15px !important;
    background: white !important;
    border-radius: 8px !important;
    border: 1px solid #e0e0e0 !important;
    text-decoration: none !important;
    color: #333333 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05) !important;
}

.website-security-badge:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
    color: #333333 !important;
    text-decoration: none !important;
}

.website-security-badge-icon {
    font-size: 16px !important;
    color: #28a745 !important;
}

.website-security-badge.ssl .website-security-badge-icon {
    color: #28a745 !important;
}

.website-security-badge.payment .website-security-badge-icon {
    color: #007bff !important;
}

.website-security-badge.privacy .website-security-badge-icon {
    color: #6c757d !important;
}

.website-security-badge.support .website-security-badge-icon {
    color: #17a2b8 !important;
}

@media (max-width: 768px) {
    .website-security-badges {
        gap: 10px !important;
        padding: 20px 10px !important;
    }
    
    .website-security-badge {
        font-size: 12px !important;
        padding: 8px 12px !important;
    }
}



/* Floating Decorative Icons */
.website-floating-icons {
    position: relative !important;
    overflow: hidden !important;
}

.website-floating-icon {
    position: absolute !important;
    font-size: 20px !important;
    color: rgba(0,0,0,0.05) !important;
    z-index: 1 !important;
    pointer-events: none !important;
    animation: websiteFloatAnimation 8s ease-in-out infinite !important;
}

.website-floating-icon.variant-1 {
    top: 10% !important;
    right: 5% !important;
    animation-delay: 0s !important;
}

.website-floating-icon.variant-2 {
    top: 60% !important;
    right: 3% !important;
    animation-delay: 2s !important;
    font-size: 16px !important;
}

.website-floating-icon.variant-3 {
    top: 30% !important;
    left: 3% !important;
    animation-delay: 4s !important;
    font-size: 24px !important;
}

@keyframes websiteFloatAnimation {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) !important;
        opacity: 0.3 !important;
    }
    25% {
        transform: translateY(-10px) rotate(5deg) !important;
        opacity: 0.5 !important;
    }
    50% {
        transform: translateY(-20px) rotate(0deg) !important;
        opacity: 0.3 !important;
    }
    75% {
        transform: translateY(-10px) rotate(-5deg) !important;
        opacity: 0.5 !important;
    }
}

@media (max-width: 768px) {
    .website-floating-icon {
        display: none !important;
    }
}
