/* Ethical Diamond Sourcing Consultancy - Main CSS */

:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-color: #2E5A88;           /* Deep Ocean Blue */
  --secondary-color: #7FB069;         /* Sage Green */
  --accent-color: #F4D35E;            /* Warm Gold */
  --tertiary-color: #EE6C4D;          /* Coral Orange */
  --quaternary-color: #3D5A80;        /* Navy Blue */
  
  /* Light Shades */
  --primary-light: #5B8DC0;
  --secondary-light: #A5D6A7;
  --accent-light: #FFF59D;
  --tertiary-light: #FFAB91;
  --quaternary-light: #8FA7C9;
  
  /* Dark Shades */
  --primary-dark: #1E3A5F;
  --secondary-dark: #558B2F;
  --accent-dark: #F57C00;
  --tertiary-dark: #BF360C;
  --quaternary-dark: #263238;
  
  /* Typography */
  --font-size-h1: 2.25rem;
  --font-size-h2: 1.875rem;
  --font-size-h3: 1.5rem;
  --font-size-navbar-brand: 1.25rem;
  --font-size-body: 1rem;
  --font-size-small: 0.875rem;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --card-padding: 2rem;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--quaternary-color);
  font-size: var(--font-size-body);
}

/* Conservative Typography */
h1 { font-size: var(--font-size-h1) !important; }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
.navbar-brand { font-size: var(--font-size-navbar-brand); }

/* Header */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-brand {
  color: var(--primary-color);
  font-weight: 700;
}

.navbar-nav .nav-link {
  color: var(--quaternary-color);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-decorative-shape {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  background-color: var(--accent-light);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 125px;
}

.hero-title {
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: var(--quaternary-color);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.hero-description {
  color: var(--quaternary-dark);
  font-size: var(--font-size-body);
  margin-bottom: 2rem;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Sections */
.section-padding {
  padding: var(--section-padding);
}

.section-title {
  color: var(--primary-color);
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 1rem;
}

.section-description {
  color: var(--quaternary-color);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background-color: #f8f9fa;
}

.feature-card {
  background: white;
  border-radius: 10px;
  padding: var(--card-padding);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-name {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--quaternary-color);
}

/* Services Section */
.services-section {
  background-color: white;
}

.service-card {
  background: white;
  border: 2px solid var(--secondary-light);
  border-radius: 15px;
  padding: var(--card-padding);
  text-align: center;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.service-name {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-description {
  color: var(--quaternary-color);
  margin-bottom: 1.5rem;
}

.service-features {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.service-price {
  color: var(--accent-dark);
  font-size: 1.5rem;
  font-weight: 700;
}

/* Features Section */
.features-section {
  background-color: #f8f9fa;
}

/* Price Plan Section */
.priceplan-section {
  background-color: white;
}

.price-card {
  background: white;
  border: 2px solid var(--secondary-light);
  border-radius: 15px;
  padding: var(--card-padding);
  text-align: center;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.price-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-5px);
}

.price-card.featured {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
}

.price-name {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.price-amount {
  color: var(--accent-dark);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.price-features {
  color: var(--quaternary-color);
  margin-bottom: 2rem;
}

/* Team Section */
.team-section {
  background-color: #f8f9fa;
}

.team-card {
  background: white;
  border-radius: 15px;
  padding: var(--card-padding);
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--secondary-light);
}

.team-name {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--secondary-color);
  font-style: italic;
}

/* Reviews Section */
.reviews-section {
  background-color: white;
}

.review-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: var(--card-padding);
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-color);
}

.review-text {
  color: var(--quaternary-color);
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.review-author {
  color: var(--primary-color);
  font-weight: 600;
  text-align: right;
}

/* Case Studies Section */
.casestudy-section {
  background-color: #f8f9fa;
}

.casestudy-card {
  background: white;
  border-radius: 15px;
  padding: var(--card-padding);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.casestudy-card:hover {
  transform: translateY(-5px);
}

.casestudy-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.casestudy-description {
  color: var(--quaternary-color);
}

/* Process Section */
.process-section {
  background-color: white;
}

.process-step {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.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-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.process-title {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.process-description {
  color: var(--quaternary-color);
}

/* Timeline Section */
.timeline-section {
  background-color: #f8f9fa;
}

.timeline-item {
  background: white;
  border-radius: 10px;
  padding: var(--card-padding);
  margin-bottom: 2rem;
  border-left: 4px solid var(--secondary-color);
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.timeline-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.timeline-description {
  color: var(--quaternary-color);
}

/* Career Section */
.career-section {
  background-color: white;
}

.career-card {
  background: #f8f9fa;
  border-radius: 15px;
  padding: var(--card-padding);
  margin-bottom: 2rem;
  border: 2px solid var(--secondary-light);
  transition: all 0.3s ease;
}

.career-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.career-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.career-role {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.career-description {
  color: var(--quaternary-color);
}

/* Core Info Section */
.coreinfo-section {
  background-color: #f8f9fa;
}

.coreinfo-card {
  background: white;
  border-radius: 10px;
  padding: var(--card-padding);
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.coreinfo-card:hover {
  transform: translateY(-5px);
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.coreinfo-title {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.coreinfo-description {
  color: var(--quaternary-color);
}

/* Contact Section */
.contact-section {
  background-color: white;
  padding: 5rem 0;
}

.contact-form {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  border: 2px solid var(--secondary-light);
  border-radius: 8px;
  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(46, 90, 136, 0.25);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

.contact-info {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1rem;
  width: 30px;
}

.contact-info-text {
  color: var(--quaternary-color);
  font-size: 1.1rem;
}

/* Blog Section */
.blog-section {
  background-color: #f8f9fa;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: var(--card-padding);
}

.blog-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--quaternary-color);
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
}

.blog-link:hover {
  color: var(--secondary-dark);
}

/* FAQ Section */
.faq-section {
  background-color: white;
}

.faq-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: var(--card-padding);
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary-color);
}

.faq-question {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.faq-answer {
  color: var(--quaternary-color);
  line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
  background-color: #f8f9fa;
  padding: 5rem 0;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-image:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background-color: var(--quaternary-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-title {
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-text {
  color: #cccccc;
  line-height: 1.6;
}

.footer-link {
  color: #cccccc;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--accent-light);
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 1rem;
  text-align: center;
}

.footer-copyright {
  color: #999;
  font-size: var(--font-size-small);
}

/* Breadcrumbs */
.breadcrumb-section {
  background-color: #f8f9fa;
  padding: 1rem 0;
}

.breadcrumb-image {
  height: 40px;
  width: auto;
}

/* Image Lazy Loading */
.loaded {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.lozad:not(.loaded) {
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Responsive adjustments are handled in responsive.css */

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
} 


/* Team Social Links - Glass Style */
.team-social-links {
    margin-top: 22px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.3);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 0.5);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.3);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 0.5);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.3);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 0.5);
}

.x-link {
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 0.5);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
