:root {
  /* Primary Color Palette - 5 colors plus shades */
  --primary-color: #a06920;
  --primary-light: #d1742e;
  --primary-dark: #6f350a;
  
  --secondary-color: #c36822;
  --secondary-light: #dea45b;
  --secondary-dark: #9b591f;
  
  --accent-color: #28a325;
  --accent-light: #4cd646;
  --accent-dark: #007713;
  
  --warm-color: #ff805e;
  --warm-light: #ff7745;
  --warm-dark: #b55b68;
  
  --neutral-color: #8e99a3;
  --neutral-light: #8fa9cb;
  --neutral-dark: #436565;
  
  /* Gradients */
  --gradient-1: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-2: linear-gradient(45deg, var(--accent-color), var(--warm-color));
  --gradient-3: linear-gradient(180deg, var(--neutral-light), var(--neutral-color));
  
  /* Typography */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --container-padding: 2rem;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--neutral-dark);
  background-color: #ffffff;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary-dark);
  margin-bottom: 1.22rem;
  font-weight: 600;
}

h1 { font-size: var(--font-size-3xl); }
h2 { font-size: var(--font-size-2xl); }
h3 { font-size: var(--font-size-xl); }
h4 { font-size: var(--font-size-lg); }
h5 { font-size: var(--font-size-base); }
h6 { font-size: var(--font-size-sm); }

p {
  margin-bottom: 1.22rem;
  font-size: var(--font-size-base);
}

/* Header Styles */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(11px);
  box-shadow: 0 3px 21px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--primary-color) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--neutral-dark) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
  padding-top: 50px;
  min-height: 100vh;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../ZEY_images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
}

.hero-title {
  color: #ffffff;
  font-size: var(--font-size-4xl);
  font-weight: 700;
  margin-bottom: 1.70rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  color: #ffffff;
  font-size: var(--font-size-xl);
  margin-bottom: 2.12rem;
  opacity: 0.9;
}

.hero-desc {
  color: #ffffff;
  font-size: var(--font-size-lg);
  margin-bottom: 2.12rem;
  opacity: 0.8;
}

/* Decorative Shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.hero-shape-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-22px); }
}

/* Section Styles */
.section {
  padding: var(--section-padding);
}

.section-title {
  font-size: var(--font-size-3xl);
  text-align: center;
  margin-bottom: 1.22rem;
  color: var(--primary-color);
}

.section-subtitle {
  font-size: var(--font-size-xl);
  text-align: center;
  margin-bottom: 1.22rem;
  color: var(--secondary-color);
}

.section-desc {
  font-size: var(--font-size-lg);
  text-align: center;
  margin-bottom: 3.12rem;
  color: var(--neutral-color);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background: var(--gradient-3);
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 11px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 2.12rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-11px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-card i {
  font-size: 3.07rem;
  color: var(--primary-color);
  margin-bottom: 1.22rem;
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, #f8f9fa, #fbfcff);
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 17px 37px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 2.12rem;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-20px);
  border-color: var(--primary-color);
  box-shadow: 0 27px 50px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1.70rem;
}

.service-price {
  font-size: var(--font-size-2xl);
  color: var(--warm-color);
  font-weight: 700;
  margin-top: 1.12rem;
}

/* Features Section */
.features-section {
  background: var(--gradient-2);
  color: white;
}

.features-section .section-title,
.features-section .section-subtitle,
.features-section .section-desc {
  color: white;
}

/* Price Plan Section */
.priceplan-section {
  background: #f8f9fa;
}

.price-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  margin-bottom: 2.12rem;
  position: relative;
  border: 3px solid var(--neutral-light);
  transition: all 0.3s ease;
}

.price-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-14px);
}

.price-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.price-value {
  font-size: var(--font-size-4xl);
  color: var(--primary-color);
  font-weight: 700;
  margin: 1rem 0;
}

/* Team Section */
.team-section {
  background: var(--gradient-3);
}

.team-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  margin-bottom: 2.12rem;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-15px);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--primary-light);
}

/* Reviews Section */
.reviews-section {
  background: linear-gradient(135deg, var(--warm-light), var(--warm-color));
  color: white;
}

.reviews-section .section-title,
.reviews-section .section-subtitle,
.reviews-section .section-desc {
  color: white;
}

.review-card {
  background: rgba(255, 255, 255, 0.9);
  color: var(--neutral-dark);
  border-radius: 15px;
  padding: 2rem;
  margin: 1rem;
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.1);
}

/* Case Study Section */
.casestudy-section {
  background: #f8f9fa;
}

.case-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 11px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2.12rem;
  transition: transform 0.3s ease;
}

.case-card:hover {
  transform: translateY(-5px);
}

/* Process Section */
.process-section {
  background: var(--gradient-1);
  color: white;
}

.process-section .section-title,
.process-section .section-subtitle,
.process-section .section-desc {
  color: white;
}

.process-step {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2.12rem;
  backdrop-filter: blur(15px);
}

.process-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: var(--warm-color);
  border-radius: 50%;
  line-height: 60px;
  text-align: center;
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: 1.22rem;
}

/* Timeline Section */
.timeline-section {
  background: #f8f9fa;
}

.timeline-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2.12rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--primary-color);
}

/* Career Section */
.career-section {
  background: var(--gradient-3);
}

.career-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2.12rem;
  transition: transform 0.3s ease;
}

.career-card:hover {
  transform: translateY(-5px);
}

/* Core Info Section */
.coreinfo-section {
  background: var(--gradient-2);
  color: white;
}

.coreinfo-section .section-title,
.coreinfo-section .section-subtitle,
.coreinfo-section .section-desc {
  color: white;
}

.coreinfo-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2.12rem;
  backdrop-filter: blur(10px);
}

/* Contact Section */
.contact-section {
  background: var(--gradient-3);
}

.contact-form {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-control {
  border-radius: 10px;
  border: 2px solid var(--neutral-light);
  padding: 0.75rem 1rem;
  margin-bottom: 1.22rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(151, 76, 31, 0.25);
}

.btn-primary {
  background: var(--gradient-1);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Blog Section */
.blog-section {
  background: #f8f9fa;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2.12rem;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

/* FAQ Section */
.faq-section {
  background: var(--gradient-3);
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1.22rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  background: var(--primary-color);
  color: white;
  padding: 1rem 1.5rem;
  cursor: pointer;
  margin: 0;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-dark);
}

.faq-answer {
  padding: 1.5rem;
  background: white;
  margin: 0;
}

/* Gallery Section */
.gallery-section {
  background: #f8f9fa;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2.12rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
.footer {
  background: var(--gradient-1);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: white;
  margin-bottom: 1.22rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2.12rem;
  padding-top: 1.16rem;
  text-align: center;
}

/* Breadcrumb */
.breadcrumb-section {
  background: var(--gradient-1);
  padding: 2rem 0;
  text-align: center;
}

.breadcrumb-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

/* Utilities */
.text-primary { color: var(--primary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }

/* Swiper Styles */
.swiper {
  padding-bottom: 3.17rem;
}

.swiper-pagination-bullet-active {
  background: var(--primary-color);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color);
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}



/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.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);
}

.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;
    }
}
