/* CoreDrift CSS */

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #d4af37;
  --secondary-color: #b8860b;
  --accent-color: #ffd700;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --background-light: #fefcf5;
  --background-white: #ffffff;
  --border-color: #f3f1e8;
  --success-color: #10b981;
  --shadow: 0 8px 25px -5px rgba(212, 175, 55, 0.1), 0 4px 10px -2px rgba(212, 175, 55, 0.05);
  --shadow-lg: 0 20px 40px -10px rgba(212, 175, 55, 0.15), 0 8px 15px -5px rgba(212, 175, 55, 0.08);
  --gradient-gold: linear-gradient(135deg, #ffd700 0%, #d4af37 50%, #b8860b 100%);
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Divider */
.section-divider {
  height: 4px;
  background: var(--gradient-gold);
  margin: 0 auto 3rem;
  width: 120px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

/* Header Styles */
header {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(254, 252, 245, 0.95) 100%);
  backdrop-filter: blur(15px);
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  min-height: 100px;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  height: 80px;
  width: auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(1) contrast(1.1);
  flex-shrink: 0;
}

.logo:hover {
  transform: scale(1.05);
  filter: brightness(1.1) contrast(1.2);
}

nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1.2rem;
  margin-left: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  white-space: nowrap;
  font-size: 0.9rem;
}

nav a:hover {
  color: var(--primary-color);
  background: rgba(212, 175, 55, 0.1);
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

nav a:hover::after {
  width: 80%;
}

nav a.active {
  color: var(--primary-color);
  background: rgba(212, 175, 55, 0.1);
}

nav a.active::after {
  width: 80%;
}

  /* Hero Section */
  .hero {
    background: 
      linear-gradient(135deg, rgba(212, 175, 55, 0.4) 0%, rgba(184, 134, 11, 0.4) 100%),
      url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
  }

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  letter-spacing: -2px;
  line-height: 1.1;
}

.hero-content h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.2s forwards;
  line-height: 1.3;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeInUp 1s ease 0.4s forwards;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  background: var(--accent-color);
  color: var(--text-dark);
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow);
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards;
  position: relative;
  overflow: hidden;
}

.cta-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.cta-btn.secondary {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.cta-btn.secondary:hover {
  background: var(--accent-color);
  color: var(--text-dark);
  transform: translateY(-3px);
}

/* Values Section */
.values {
  padding: 120px 0;
  background: 
    linear-gradient(rgba(254, 252, 245, 0.8), rgba(254, 252, 245, 0.8)),
    url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.values h3 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-dark);
  font-weight: 600;
  letter-spacing: -1px;
}

.values ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.values li {
  background: var(--background-white);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.values li:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.values li strong {
  color: var(--primary-color);
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* Services Section */
.services {
  padding: 120px 0;
  background: var(--background-white);
}

.services h3 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-dark);
  font-weight: 600;
  letter-spacing: -1px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service {
  background: var(--background-light);
  padding: 3.5rem 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  overflow: hidden;
}

.service::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.6s ease;
}

.service:hover::before {
  left: 100%;
}

.service:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  background: var(--background-white);
  box-shadow: var(--shadow-lg);
}

.service h4 {
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.service p {
  color: var(--text-light);
  font-size: 1.2rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Process Section */
.process {
  padding: 120px 0;
  background: 
    linear-gradient(rgba(254, 252, 245, 0.8), rgba(254, 252, 245, 0.8)),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.process h3 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-dark);
  font-weight: 600;
  letter-spacing: -1px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  background: var(--background-white);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 60px;
  height: 60px;
  background: 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 1.5rem;
}

.step h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.step p {
  color: var(--text-light);
  font-size: 1rem;
}



/* FAQ Section */
.faq {
  padding: 120px 0;
  background: var(--background-light);
}

.faq h3 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-dark);
  font-weight: 600;
  letter-spacing: -1px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--background-white);
  margin-bottom: 1rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-lg);
}

.faq-item h4 {
  background: var(--primary-color);
  color: white;
  padding: 1.5rem 2rem;
  margin: 0;
  font-size: 1.2rem;
  cursor: pointer;
}

.faq-item p {
  padding: 1.5rem 2rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  background: 
    linear-gradient(135deg, rgba(212, 175, 55, 0.75) 0%, rgba(184, 134, 11, 0.75) 100%),
    url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-section h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Contact Section */
.contact {
  padding: 120px 0;
  background: 
    linear-gradient(rgba(254, 252, 245, 0.8), rgba(254, 252, 245, 0.8)),
    url('https://images.unsplash.com/photo-1556761175-b413da4baf72?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.contact h3 {
  font-size: 3rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
  font-weight: 600;
  letter-spacing: -1px;
}

.contact-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contact-info a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  text-decoration: underline;
}

.business-hours {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--background-white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.business-hours h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.business-hours p {
  margin-bottom: 0.5rem;
}

/* Form Styles */
form {
  background: var(--background-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

form h4 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

form input:focus,
form textarea:focus,
form select:focus {
  outline: none;
  border-color: var(--primary-color);
}

form button {
  background: var(--primary-color);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

form button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
  color: #d1d5db;
}

.footer-section p {
  color: #d1d5db;
  margin-bottom: 0.5rem;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.2));
  transition: all 0.3s ease;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1rem;
  text-align: center;
  color: #9ca3af;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  header {
    padding: 0.5rem 0;
    min-height: auto;
  }

  .header-flex {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
  }

  .logo {
    height: 60px;
  }

  nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-left: 0;
  }

  nav a {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }
  
  .hero {
    padding: 120px 0 80px;
    margin-top: 140px;
    background-attachment: scroll;
  }

  .values,
  .process,
  .contact,
  .cta-section {
    background-attachment: scroll;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content h2 {
    font-size: 1.4rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .contact-flex {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .values ul {
    grid-template-columns: 1fr;
  }
  
  .service-list {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  

  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 250px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .logo {
    height: 50px;
  }

  nav {
    gap: 0.5rem;
  }

  nav a {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }

  .hero {
    margin-top: 130px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content h2 {
    font-size: 1.2rem;
  }
  
  .values h3,
  .services h3,
  .contact h3,
  .process h3,
  .faq h3,
  .cta-section h3 {
    font-size: 2rem;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* News Ticker */
.news-ticker {
  background: var(--text-dark);
  color: white;
  padding: 0;
  overflow: hidden;
  border-bottom: 3px solid var(--primary-color);
  position: relative;
}

.news-ticker::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    var(--text-dark) 0%, 
    transparent 5%, 
    transparent 95%, 
    var(--text-dark) 100%);
  pointer-events: none;
  z-index: 1;
}

.ticker-label {
  font-weight: 600;
  color: var(--primary-color);
  background: rgba(31, 41, 55, 0.95);
  padding: 0.75rem 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--primary-color);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ticker-content {
  height: 45px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.ticker-items {
  display: flex;
  animation: scroll 300s linear infinite;
  gap: 3rem;
  white-space: nowrap;
  align-items: center;
  height: 100%;
  line-height: 1.1;
  padding: 0 1rem;
  font-size: 0.85rem;
  font-weight: 400;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.news-item:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--primary-color);
  transform: translateY(-1px);
}

.news-item:hover span {
  color: var(--primary-color);
}

.news-image {
  width: 35px;
  height: 20px;
  border-radius: 3px;
  object-fit: cover;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.news-item:hover .news-image {
  border-color: var(--primary-color);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.news-separator {
  color: var(--primary-color);
  font-size: 1.2rem;
  opacity: 0.6;
  margin: 0 1rem;
  flex-shrink: 0;
}

.ticker-items span {
  transition: color 0.3s ease;
  white-space: nowrap;
}

/* Ticker controls */
#refresh-ticker {
  background: none !important;
  border: 1px solid var(--primary-color) !important;
  color: var(--primary-color) !important;
  padding: 3px 8px !important;
  margin-left: 12px !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  font-size: 0.75em !important;
  transition: all 0.3s ease !important;
  font-family: monospace !important;
  min-width: 24px !important;
}

#refresh-ticker:hover:not(:disabled) {
  background: var(--primary-color) !important;
  color: var(--text-dark) !important;
  transform: scale(1.1) !important;
}

#refresh-ticker:disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
}

#last-update {
  font-size: 0.8em !important;
  color: var(--secondary-color) !important;
  margin-left: 12px !important;
  font-weight: 400 !important;
  opacity: 0.9 !important;
}

@keyframes scroll {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

@keyframes tickerPulse {
  0% { 
    border-bottom-color: var(--primary-color);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  }
  50% { 
    border-bottom-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.3);
  }
  100% { 
    border-bottom-color: var(--primary-color);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

.news-ticker.updating {
  animation: tickerPulse 1.5s ease-in-out;
}

/* Value Icons */
.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  color: var(--primary-color);
  text-align: center;
}

.value-icon i {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.values li:hover .value-icon i {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

/* Solutions Section */
.solutions {
  padding: 120px 0;
  background: var(--background-light);
}

.solutions h3 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-dark);
  font-weight: 600;
  letter-spacing: -1px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.solution-card {
  background: var(--background-white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  text-align: center;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.solution-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
  color: var(--primary-color);
  text-align: center;
}

.solution-icon i {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.solution-card:hover .solution-icon i {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.solution-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.solution-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.solution-features {
  list-style: none;
  margin-bottom: 2rem;
}

.solution-features li {
  padding: 0.5rem 0;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-color);
}

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

.solution-cta {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.solution-cta:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

/* Service Numbers */
.service-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-details {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

.service-details ul {
  list-style: none;
  color: var(--text-light);
}

.service-details li {
  padding: 0.25rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.service-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Industries Section */
.industries {
  padding: 120px 0;
  background: 
    linear-gradient(rgba(254, 252, 245, 0.8), rgba(254, 252, 245, 0.8)),
    url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.industries h3 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-dark);
  font-weight: 600;
  letter-spacing: -1px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.industry-card {
  background: var(--background-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.industry-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  color: var(--primary-color);
  text-align: center;
}

.industry-icon i {
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.industry-card:hover .industry-icon i {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.industry-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.industry-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.industry-solutions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.industry-solutions span {
  background: var(--primary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Process Timeline */
.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-gold);
  transform: translateX(-50%);
  z-index: 1;
}

.process-steps {
  display: grid;
  gap: 3rem;
}

.step {
  position: relative;
  background: var(--background-white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  margin-left: 50%;
  width: 45%;
  z-index: 2;
}

.step:nth-child(even) {
  margin-left: 5%;
}

.step-duration {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* Case Studies */
.case-studies {
  padding: 120px 0;
  background: var(--background-white);
}

.case-studies h3 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-dark);
  font-weight: 600;
  letter-spacing: -1px;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.case-study {
  background: var(--background-light);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.case-study:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.case-study-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.case-study-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
}

.case-study-icon i {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.case-study:hover .case-study-icon i {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.case-study-meta h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.case-study-industry {
  background: var(--primary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.case-study p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.case-study-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.metric {
  text-align: center;
  padding: 1rem;
  background: var(--background-white);
  border-radius: 10px;
}

.metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Resources Section */
.resources {
  padding: 120px 0;
  background: 
    linear-gradient(rgba(254, 252, 245, 0.8), rgba(254, 252, 245, 0.8)),
    url('https://images.unsplash.com/photo-1481627834876-b7833e8f5570?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.resources h3 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-dark);
  font-weight: 600;
  letter-spacing: -1px;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.resource-category {
  background: var(--background-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.resource-category h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.resource-list {
  display: grid;
  gap: 1rem;
}

.resource-item {
  display: block;
  padding: 1rem;
  background: var(--background-light);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.resource-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--primary-color);
}

.resource-title {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.resource-meta {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* FAQ Categories */
.faq-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-category h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
}

.faq-item {
  margin-bottom: 1rem;
}

.faq-item h5 {
  background: var(--primary-color);
  color: white;
  padding: 1rem 1.5rem;
  margin: 0;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 8px 8px 0 0;
  transition: background 0.3s ease;
}

.faq-item h5:hover {
  background: var(--secondary-color);
}

.faq-item p {
  background: var(--background-white);
  padding: 1.5rem;
  margin: 0;
  border-radius: 0 0 8px 8px;
  border: 1px solid var(--border-color);
  border-top: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active p {
  max-height: 200px;
}

/* CTA Button Variations */
.cta-btn.tertiary {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.cta-btn.tertiary:hover {
  background: var(--accent-color);
  color: var(--text-dark);
}

/* Contact Enhancements */
.contact-social {
  margin-top: 2rem;
}

.contact-social h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: var(--primary-color);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color);
  color: white;
}

/* Footer Enhancements */
.footer-social {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}

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

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

/* Navigation Active State */
nav a.active {
  color: var(--primary-color);
  font-weight: 600;
}

nav a.active::after {
  width: 100%;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
  .news-ticker {
    padding: 0;
  }

  .ticker-label {
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
  }

  .ticker-content {
    height: 45px;
  }

  .ticker-items {
    font-size: 0.9rem;
  }

  .solutions-grid,
  .industries-grid,
  .case-studies-grid,
  .resources-grid {
    grid-template-columns: 1fr;
  }

  .timeline-line {
    left: 20px;
  }

  .step {
    margin-left: 50px;
    width: calc(100% - 50px);
  }

  .step:nth-child(even) {
    margin-left: 50px;
  }

  .case-study-metrics {
    grid-template-columns: 1fr;
  }

  .faq-categories {
    grid-template-columns: 1fr;
  }

  .social-links {
    flex-wrap: wrap;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}
