:root {
  /* Primary Color Palette - Ethical Diamond Theme */
  --primary-color: #2c5aa0; /* Deep sapphire blue for trust */
  --secondary-color: #f8f9fa; /* Light pearl white */
  --accent-color: #17a2b8; /* Aqua blue for clarity */
  --success-color: #28a745; /* Forest green for ethics */
  --warning-color: #ffc107; /* Gold for luxury */
  
  /* Light/Dark Shades */
  --primary-light: #4a7bc8;
  --primary-dark: #1e3d6f;
  --secondary-light: #ffffff;
  --secondary-dark: #e9ecef;
  --accent-light: #5dade2;
  --accent-dark: #138496;
  
  /* Typography */
  --font-family-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-max-width: 1200px;
}

/* Global Styles */
body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: #333;
  overflow-x: hidden;
}

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

/* Conservative Typography */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-dark);
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #555;
}

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

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

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

.hero-content {
  z-index: 2;
    padding-top: 275px;
}

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

/* Decorative Shapes */
.hero-section::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: var(--accent-color);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: 150px;
  height: 150px;
  background: var(--warning-color);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

/* Button Styles */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  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);
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Card Styles */
.card {
  border: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.card-header {
  background-color: var(--secondary-color);
  border-bottom: 3px solid var(--primary-color);
  font-weight: 600;
}

/* Services Section */
.service-item {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
}

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

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--success-color);
  margin-top: 1rem;
}

/* Team Section */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--secondary-color);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 1rem;
}

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

.team-role {
  color: var(--accent-color);
  font-weight: 500;
}

/* Reviews Section */
.review-card {
  background-color: var(--secondary-color);
  padding: 2rem;
  border-left: 4px solid var(--primary-color);
  margin-bottom: 2rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

/* FAQ Section */
.faq-item {
  margin-bottom: 1.5rem;
}

.faq-question {
  background-color: var(--primary-color);
  color: white;
  padding: 1rem;
  border-radius: 5px 5px 0 0;
  font-weight: 600;
  margin-bottom: 0;
}

.faq-answer {
  background-color: var(--secondary-color);
  padding: 1rem;
  border-radius: 0 0 5px 5px;
  border: 1px solid #dee2e6;
  border-top: none;
}

/* Gallery Section */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Contact Form */
.contact-form {
  background-color: var(--secondary-color);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid #e9ecef;
  border-radius: 5px;
  padding: 12px 15px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
}

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

.footer h5 {
  color: var(--warning-color);
  margin-bottom: 1rem;
}

.footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--warning-color);
}

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

/* Breadcrumb */
.breadcrumb {
  background-color: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}

/* Blog Section */
.blog-post {
  margin-bottom: 2rem;
}

.blog-post-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.blog-post-excerpt {
  color: #666;
  margin-bottom: 1rem;
}

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

.blog-post-link:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

/* Process/Timeline Section */
.process-step {
  position: relative;
  padding: 2rem;
  margin-bottom: 2rem;
  background-color: var(--secondary-color);
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
}

.process-number {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Price Plan Section */
.price-plan {
  text-align: center;
  padding: 2rem;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.price-plan:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.price-plan.featured {
  border-color: var(--primary-color);
  position: relative;
  transform: scale(1.05);
}

.price-plan.featured::before {
  content: 'Popular';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--warning-color);
  color: var(--primary-dark);
  padding: 5px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.8rem;
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
}

.price-features li:last-child {
  border-bottom: none;
}

/* Core Info Section */
.core-info-item {
  text-align: center;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.core-info-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

/* Case Study Section */
.case-study-item {
  padding: 2rem;
  background-color: var(--secondary-color);
  border-radius: 10px;
  margin-bottom: 2rem;
  border-top: 4px solid var(--success-color);
}

/* Career Section */
.career-item {
  padding: 1.5rem;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.career-item: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: 0.5rem;
}

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



.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;
    }
}



/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

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

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.instagram-link {
    background: #e4405f;
    border: 2px solid #e4405f;
}

.instagram-link:hover {
    background: #d62976;
    border-color: #d62976;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
