/* ===== ETHICAL GEMSTONE SOURCING SAAS TEMPLATE ===== */

/* Color Palette Variables */
:root {
  --primary-sage: #87A96B;
  --primary-emerald: #6B8E23;
  --primary-coral: #FF7F7F;
  --primary-gold: #DAA520;
  --primary-slate: #708090;
  
  /* Light shades */
  --sage-light: #B5D4A1;
  --emerald-light: #98C379;
  --coral-light: #FFB3B3;
  --gold-light: #F4E4BC;
  --slate-light: #B0BCC9;
  
  /* Dark shades */
  --sage-dark: #5D7A47;
  --emerald-dark: #4A6B1A;
  --coral-dark: #CC5555;
  --gold-dark: #B8941A;
  --slate-dark: #4F5A68;
}

/* Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--slate-dark);
  background-color: #ffffff;
    overflow-x: hidden;
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.25rem !important;
  font-weight: 600;
  color: var(--emerald-dark);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--emerald-dark);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--emerald-dark);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--slate-dark);
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--slate-dark);
}

/* Section Spacing */
section {
  padding: 4rem 0;
}

/* Header Styles */
#header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-nav .nav-link {
  color: var(--slate-dark);
  font-weight: 500;
  padding: 0.75rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--emerald-dark);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--emerald-light) 100%);
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-content {
  z-index: 2;
    padding-top: 250px;
}

.hero-image {
  position: relative;
}

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--coral-light);
  border-radius: 50%;
  opacity: 0.3;
  top: -50px;
  right: -50px;
  z-index: -1;
}

/* Button Styles */
.btn-primary-custom {
  background-color: var(--emerald-dark);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: var(--sage-dark);
  transform: translateY(-2px);
}

.btn-outline-custom {
  border: 2px solid var(--emerald-dark);
  color: var(--emerald-dark);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 5px;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background-color: var(--emerald-dark);
  color: white;
}

/* About Section */
#about {
  background-color: #f8f9fa;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

/* Services Section */
#services {
  background-color: white;
}

.service-card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--emerald-dark);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--emerald-dark);
  margin-bottom: 1rem;
}

/* Features Section */
#features {
  background-color: #f8f9fa;
}

/* Price Plan Section */
#priceplan {
  background-color: white;
}

.price-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
}

.price-card.featured {
  border-color: var(--emerald-dark);
  transform: scale(1.05);
}

.price-card:hover {
  border-color: var(--sage-dark);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--emerald-dark);
}

/* Team Section */
#team {
  background-color: #f8f9fa;
}

.team-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Reviews Section */
#reviews {
  background-color: white;
}

.review-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  position: relative;
}

.review-quote {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--slate-dark);
}

.review-author {
  font-weight: 600;
  color: var(--emerald-dark);
}

/* Case Study Section */
#casestudy {
  background-color: #f8f9fa;
}

.case-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Process Section */
#process {
  background-color: white;
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--emerald-dark);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline Section */
#timeline {
  background-color: #f8f9fa;
}

.timeline-item {
  padding: 2rem;
  background: white;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Career Section */
#career {
  background-color: white;
}

.career-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.career-card:hover {
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Core Info Section */
#coreinfo {
  background-color: #f8f9fa;
}

.info-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-icon {
  width: 80px;
  height: 80px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

/* Contact Section */
#contacts {
  background-color: white;
}

.contact-form {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 3rem;
}

.form-control {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--emerald-dark);
  box-shadow: 0 0 0 0.2rem rgba(107, 142, 35, 0.25);
}

/* Blog Section */
#blog {
  background-color: #f8f9fa;
}

.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  height: 200px;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-content {
  padding: 2rem;
}

/* FAQ Section */
#faq {
  background-color: white;
}

.faq-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--emerald-dark);
}

.faq-question {
  font-weight: 600;
  color: var(--emerald-dark);
  margin-bottom: 1rem;
}

/* Gallery Section */
#gallery {
  background-color: #f8f9fa;
  padding: 4rem 0;
}

.gallery-item {
  height: 250px;
  background: var(--sage-light);
  border-radius: 10px;
  margin-bottom: 2rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

/* Footer */
#footer {
  background-color: #1a1d23;
  color: #ffffff;
  padding: 3rem 0 1rem;
}

.footer-section h5 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-section p {
  color: #e8e9ea;
  line-height: 1.6;
}

.footer-section a {
  color: #e8e9ea;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ffffff;
}

#site-copyright {
  color: #b8bcc2;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #3a3f47;
  margin-top: 2rem;
}

/* Accessibility - Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Utility Classes */
.text-primary-custom {
  color: var(--emerald-dark);
}

.bg-primary-custom {
  background-color: var(--sage-light);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--coral-dark);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
} 



.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.linkedin-link {
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #21cbf3 0%, #2196f3 100%);
}

.instagram-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.x-link {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    position: relative;
}

.x-link::after {
    content: '✦';
    font-weight: bold;
    font-size: 22px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: linear-gradient(135deg, #414345 0%, #232526 100%);
}

.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: #ffffff;
}

.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: #ffffff;
}

.newsletter-subtitle {
    font-size: 13px;
    color: #e8e9ea;
    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 - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.instagram-link:hover {
    background: #e4405f;
    border-color: #e4405f;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}



/* 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: #ffffff;
}

.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 - Bold Style */
.website-cta-section {
    padding: 50px 0 !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    text-align: center !important;
    margin: 0 !important;
}

.website-cta-container {
    max-width: 800px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.website-cta-title {
    font-size: 32px !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    color: white !important;
    font-family: inherit !important;
}

.website-cta-subtitle {
    font-size: 18px !important;
    margin-bottom: 30px !important;
    color: rgba(255,255,255,0.9) !important;
    font-family: inherit !important;
}

.website-cta-button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 18px 35px !important;
    background: rgba(255,255,255,0.2) !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 50px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
    backdrop-filter: blur(10px) !important;
}

.website-cta-button:hover {
    background: rgba(255,255,255,0.3) !important;
    border-color: rgba(255,255,255,0.5) !important;
    transform: translateY(-2px) !important;
    color: white !important;
    text-decoration: none !important;
}

.website-cta-phone-icon {
    font-size: 20px !important;
}

@media (max-width: 768px) {
    .website-cta-section {
        padding: 40px 0 !important;
    }
    
    .website-cta-title {
        font-size: 26px !important;
    }
    
    .website-cta-subtitle {
        font-size: 16px !important;
    }
    
    .website-cta-button {
        font-size: 16px !important;
        padding: 16px 30px !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;
    }
}
