/* AR Travel Brochures - Main CSS */

/* Color Variables */
:root {
    --primary-color: #4A90E2;
    --primary-light: #6BA3E8;
    --primary-dark: #2E5A8A;
    --secondary-color: #50C878;
    --secondary-light: #6FD18F;
    --secondary-dark: #3A9B5C;
    --accent-color: #FF6B6B;
    --accent-light: #FF8E8E;
    --accent-dark: #E54545;
    --neutral-light: #F8F9FA;
    --neutral-dark: #343A40;
    --text-primary: #2C3E50;
    --text-secondary: #6C757D;
    --text-muted: #ADB5BD;
}

/* Global Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

.display-4 {
    font-size: 2.5rem;
    font-weight: 700;
}

.lead {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-secondary);
}

/* Bootstrap Override - Primary Color */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    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);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

/* Header Styles */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--neutral-light) 0%, #E3F2FD 100%);
    position: relative;
    overflow: hidden;
}

.hero-shape {
    top: -50%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
    border-radius: 50%;
    z-index: 1;
}

#hero .container {
    position: relative;
    z-index: 2;
}

/* Card Styles */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

/* Process Steps */
.process-number, .process-step {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    font-weight: 700;
}

.metric-circle {
    width: 80px;
    height: 80px;
    font-size: 1.2rem;
    font-weight: 700;
}

.roadmap-item {
    width: 50px;
    height: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 2rem 0;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 2rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 2rem;
}

.timeline-marker {
    position: absolute;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -8px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -8px;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Icon Styles */
.fa-3x {
    font-size: 2.5rem;
}

.fa-2x {
    font-size: 1.8rem;
}

/* Section Spacing */
section {
    padding: 4rem 0;
}

/* Background Variations */
.bg-light {
    background-color: var(--neutral-light) !important;
}

/* Form Styles */
.form-control {
    border-radius: 8px;
    border: 2px solid #E9ECEF;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease, box-shadow 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 {
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

#gallery img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Footer Styles */
#footer {
    background-color: var(--neutral-dark) !important;
}

#footer a {
    transition: color 0.3s ease;
}

#footer a:hover {
    color: var(--primary-color) !important;
}

/* Animation Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Utility Classes */
.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);
}

.shadow-lg {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.rounded-3 {
    border-radius: 12px;
}

/* Breadcrumb Styles */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item img {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.breadcrumb-item img:hover {
    opacity: 1;
}

/* Custom Spacing */
.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Smooth Transitions */
* {
    transition-property: transform, opacity, color, background-color, border-color, box-shadow;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

/* Focus States for Accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .card {
        border: 2px solid var(--text-primary);
    }
    
    .btn-primary {
        border: 2px solid var(--primary-dark);
    }
} 



.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.9);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 1);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}




.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 - Modern Style */
.team-social-links {
    margin-top: 25px;
    padding: 20px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

.x-link {
    background: linear-gradient(45deg, #000000, #434343);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 24px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
}



/* 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 - Minimal Style */
.website-cta-section {
    padding: 40px 0 !important;
    background: #ffffff !important;
    color: #333333 !important;
    text-align: center !important;
    margin: 0 !important;
    border-top: 1px solid #e0e0e0 !important;
    border-bottom: 1px solid #e0e0e0 !important;
}

.website-cta-container {
    max-width: 600px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.website-cta-title {
    font-size: 24px !important;
    font-weight: 400 !important;
    margin-bottom: 10px !important;
    color: #333333 !important;
    font-family: inherit !important;
}

.website-cta-subtitle {
    font-size: 15px !important;
    margin-bottom: 25px !important;
    color: #666666 !important;
    font-family: inherit !important;
}

.website-cta-button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 12px 24px !important;
    background: #333333 !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 3px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.website-cta-button:hover {
    background: #555555 !important;
    color: white !important;
    text-decoration: none !important;
}

.website-cta-phone-icon {
    font-size: 16px !important;
}

@media (max-width: 768px) {
    .website-cta-section {
        padding: 30px 0 !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;
    }
}
