/* CSS Variables - Color Palette */
:root {
    /* Primary Colors */
    --primary-color: #4a90e2;
    --secondary-color: #f39c12;
    --accent-color: #2ecc71;
    --warning-color: #e74c3c;
    --neutral-color: #34495e;
    
    /* Light Shades */
    --primary-light: #87ceeb;
    --secondary-light: #f8c471;
    --accent-light: #82e0aa;
    --warning-light: #f1948a;
    --neutral-light: #85929e;
    
    /* Dark Shades */
    --primary-dark: #2c5282;
    --secondary-dark: #d68910;
    --accent-dark: #239b56;
    --warning-dark: #c0392b;
    --neutral-dark: #2c3e50;
    
    /* Typography */
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --line-height-base: 1.6;
}

/* Global Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: var(--line-height-base);
    color: var(--neutral-dark);
    overflow-x: hidden;
}

/* Conservative Typography */
.navbar-brand {
    font-size: 1.25rem !important;
    font-weight: 600;
    color: var(--primary-color);
}

h1, .display-4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neutral-dark);
}

h2, .h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--neutral-dark);
}

h3, .h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

h4, .h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

h5, .h5 {
    font-size: 1.1rem;
    font-weight: 500;
}

p, .lead {
    font-size: var(--font-size-base);
    margin-bottom: 1rem;
}

/* Header Styles */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background-color: white;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--neutral-color);
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: var(--accent-light);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

#hero .container {
    position: relative;
    z-index: 1;
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Card Styles */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0.75rem;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.card-img-top {
    border-radius: 0.75rem 0.75rem 0 0;
    height: 200px;
    object-fit: cover;
}

/* Section Spacing */
section {
    padding: 4rem 0;
}

/* Background Variations */
.bg-light {
    background-color: #f8f9fa;
}

/* Icon Styles */
.fa-3x {
    color: var(--primary-color);
}

.fa-2x {
    color: var(--primary-color);
}

/* Team Images */
.rounded-circle {
    border: 3px solid var(--primary-light);
    transition: transform 0.3s ease;
}

.rounded-circle:hover {
    transform: scale(1.05);
}

/* Form Styles */
.form-control {
    border-radius: 0.5rem;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

/* Gallery Styles */
#gallery img {
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* Footer Styles */
#footer {
    background-color: var(--neutral-dark);
}

#footer h5 {
    color: var(--primary-light);
    margin-bottom: 1rem;
}

#footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer a:hover {
    color: var(--primary-light);
}

/* Process Steps */
.bg-primary {
    background-color: var(--primary-color);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Text Colors */
.text-primary {
    color: var(--primary-color);
}

.text-muted {
    color: var(--neutral-color);
}

/* Utilities */
.shadow-sm {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.shadow {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Custom Spacing */
.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Border Utilities */
.border-primary {
    border-color: var(--primary-color);
}

/* Text Utilities */
.fw-semibold {
    font-weight: 600;
}

/* Card Hover Effects */
.card-hover:hover {
    background-color: var(--primary-light);
    color: white;
}

/* Pricing Cards */
.pricing-card {
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

/* Contact Info */
.contact-info i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Breadcrumb Styles */
nav img {
    opacity: 0.7;
}

/* Service Items */
.service-item {
    transition: all 0.3s ease;
}

.service-item:hover {
    background-color: var(--primary-light);
    color: white;
}

/* FAQ Cards */
.faq-card {
    margin-bottom: 1rem;
}

/* Blog Grid */
#blog_grid .card-img-top {
    height: 250px;
    object-fit: cover;
}

/* Team Section */
#team .col-lg-2 {
    flex: 0 0 20%;
    max-width: 20%;
}

/* Testimonials */
.blockquote-footer {
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Process Numbers */
.process-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Additional Page Styles */
.page-section {
    padding: 3rem 0;
}

/* Gallery Lightbox */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
}

.gallery-item img {
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Form Validation */
.is-invalid {
    border-color: var(--warning-color);
}

.invalid-feedback {
    color: var(--warning-color);
}

/* Success States */
.is-valid {
    border-color: var(--accent-color);
}

.valid-feedback {
    color: var(--accent-color);
}

/* Loading Spinner */
.spinner {
    border: 2px solid var(--primary-light);
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 



.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;
    }
}




.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-card {
    max-width: 450px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.newsletter-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px;
    text-align: center;
    color: white;
}

.newsletter-title {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 8px;
}

.newsletter-subtitle {
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    line-height: 1.4;
}

.newsletter-body {
    padding: 25px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
}

.newsletter-button {
    padding: 12px 20px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background: #5a6fd8;
    transform: translateY(-1px);
}

.newsletter-success {
    display: none;
    margin-top: 20px;
    padding: 15px;
    background: #d1f2eb;
    border: 1px solid #a7f3d0;
    border-radius: 8px;
    color: #065f46;
    text-align: center;
    font-size: 14px;
}

.newsletter-success.show {
    display: block;
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .newsletter-header {
        padding: 20px;
    }
    
    .newsletter-body {
        padding: 20px;
    }
}



/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f77737, #fcaf45, #ffdc80);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        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 - Modern Style */
.newsletter-section {
    margin: 35px 0;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.newsletter-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
    text-align: center;
}

.newsletter-subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 450px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    background: rgba(255,255,255,0.9);
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    background: white;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-button {
    padding: 14px 25px;
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 100%;
}

.newsletter-button:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-1px);
}

.newsletter-success {
    display: none;
    margin-top: 20px;
    padding: 18px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    color: white;
    text-align: center;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

.newsletter-success.show {
    display: block;
}

@media (max-width: 768px) {
    .newsletter-section {
        margin: 25px 0;
        padding: 25px 20px;
    }
    
    .newsletter-form {
        max-width: 320px;
    }
}



/* Live Chat FAQ Widget - Friendly Style */
.website-livechat-widget {
    position: fixed !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 290px !important;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%) !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 25px rgba(255,154,158,0.3) !important;
    z-index: 999999 !important;
    color: #333333 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    transition: all 0.3s ease !important;
    border: 2px solid rgba(255,255,255,0.8) !important;
}

.website-livechat-header {
    padding: 16px 20px !important;
    border-bottom: 1px solid rgba(255,255,255,0.3) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-radius: 20px 20px 0 0 !important;
}

.website-livechat-title {
    font-size: 16px !important;
    font-weight: 600 !important;
    margin: 0 !important;
    color: #333333 !important;
}

.website-livechat-toggle {
    background: rgba(255,255,255,0.7) !important;
    border: none !important;
    color: #333333 !important;
    font-size: 16px !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    user-select: none !important;
    padding: 6px 8px !important;
    border-radius: 50% !important;
    width: 30px !important;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
}

.website-livechat-toggle:hover {
    background: rgba(255,255,255,1) !important;
    transform: scale(1.1) !important;
}

.website-livechat-content {
    padding: 16px 20px 20px !important;
    max-height: 370px !important;
    overflow-y: auto !important;
    background: rgba(255,255,255,0.9) !important;
    border-radius: 0 0 20px 20px !important;
}

.website-livechat-content.hidden {
    display: none !important;
}

.website-faq-item {
    margin-bottom: 12px !important;
    padding: 10px !important;
    background: rgba(255,255,255,0.8) !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255,255,255,0.5) !important;
}

.website-faq-item:last-child {
    margin-bottom: 0 !important;
}

.website-faq-question {
    font-size: 14px !important;
    font-weight: 500 !important;
    margin-bottom: 6px !important;
    color: #333333 !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    user-select: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.website-faq-question:hover {
    color: #007bff !important;
}

.website-faq-answer {
    font-size: 12px !important;
    line-height: 1.4 !important;
    color: #555555 !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;
    color: #007bff !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 - Elegant Style */
.website-cta-section {
    padding: 55px 0 !important;
    background: #2c3e50 !important;
    color: white !important;
    text-align: center !important;
    margin: 0 !important;
    position: relative !important;
}

.website-cta-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(45deg, transparent 0%, rgba(255,255,255,0.03) 50%, transparent 100%) !important;
}

.website-cta-container {
    max-width: 700px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    position: relative !important;
    z-index: 2 !important;
}

.website-cta-title {
    font-size: 30px !important;
    font-weight: 300 !important;
    margin-bottom: 12px !important;
    color: white !important;
    font-family: inherit !important;
    letter-spacing: 1px !important;
}

.website-cta-subtitle {
    font-size: 16px !important;
    margin-bottom: 35px !important;
    color: rgba(255,255,255,0.8) !important;
    font-family: inherit !important;
    font-weight: 300 !important;
}

.website-cta-button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 16px 32px !important;
    background: transparent !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 0 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    transition: all 0.3s ease !important;
    border: 2px solid white !important;
    letter-spacing: 0.5px !important;
}

.website-cta-button:hover {
    background: white !important;
    color: #2c3e50 !important;
    text-decoration: none !important;
}

.website-cta-phone-icon {
    font-size: 18px !important;
}

@media (max-width: 768px) {
    .website-cta-section {
        padding: 40px 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;
    }
}
