/* Base Styles */
:root {
  --primary-color: #2d5bff;
  --primary-dark: #1a45e0;
  --secondary-color: #17cdb5;
  --accent-color: #ff6b6b;
  --text-color: #333333;
  --text-light: #6e7c90;
  --bg-color: #ffffff;
  --bg-light: #f8fafc;
  --bg-dark: #1a1a2e;
  --border-color: #e9ecef;
  --border-radius: 8px;
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-color);
  overflow-x: hidden;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

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

section {
  padding: 80px 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

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

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

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

.btn-tertiary {
  background-color: transparent;
  color: var(--text-color);
  border: 2px solid var(--border-color);
}

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

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 10px 20px;
}

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

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 15px 0;
}

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

.logo img {
  height: 40px;
  width: auto;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

nav ul li a:hover, 
nav ul li a.active {
  color: var(--primary-color);
}

nav ul li a.active::after,
nav ul li a:hover::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin-bottom: 5px;
  border-radius: 3px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
  padding: 150px 0 80px;
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(45, 91, 255, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-image {
  flex: 1;
  text-align: right;
}

.hero-image img {
  max-width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

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

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 15px auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.service-card h3 {
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 20px;
}

/* Portfolio Section */
.portfolio {
  background-color: var(--bg-light);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.portfolio-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

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

.portfolio-overlay h3 {
  color: white;
  margin-bottom: 10px;
}

.portfolio-overlay p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials {
  background-color: white;
}

.testimonial-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  margin: 0 -20px;
  padding: 20px;
  scrollbar-width: none; /* For Firefox */
}

.testimonial-slider::-webkit-scrollbar {
  display: none; /* For Chrome, Safari, and Opera */
}

.testimonial {
  flex: 0 0 calc(100% - 40px);
  scroll-snap-align: start;
  margin: 0 20px;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
}

.testimonial-content {
  position: relative;
  margin-bottom: 20px;
}

.testimonial-content::before {
  content: '"';
  font-size: 5rem;
  color: rgba(45, 91, 255, 0.1);
  position: absolute;
  top: -40px;
  left: -10px;
  font-family: Georgia, serif;
}

.testimonial-content p {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.testimonial-author h4 {
  margin-bottom: 5px;
}

.testimonial-author p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* CTA Section */
.cta {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 60px 0;
}

.cta h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.cta .btn-primary {
  background-color: white;
  color: var(--primary-color);
}

.cta .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
  background-color: var(--bg-dark);
  color: white;
  padding: 80px 0 30px;
}

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

.footer-about .footer-logo {
  height: 40px;
  margin-bottom: 20px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-contact svg {
  margin-right: 10px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-legal a:hover {
  color: white;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1200px;
  background-color: white;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
  border-radius: var(--border-radius);
  padding: 20px;
  z-index: 9999;
  display: none;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cookie-content p {
  margin-bottom: 15px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.cookie-content a {
  font-size: 0.9rem;
}

/* Blog Page */
.page-header {
  background-color: var(--bg-light);
  padding: 120px 0 60px;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 10px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.blog-post {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  background-color: white;
  transition: var(--transition);
}

.blog-post:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.post-image {
  position: relative;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-post:hover .post-image img {
  transform: scale(1.05);
}

.post-content {
  padding: 25px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.post-content h2 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.post-content h2 a {
  color: var(--text-color);
  transition: var(--transition);
}

.post-content h2 a:hover {
  color: var(--primary-color);
}

.post-content p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.read-more {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: var(--primary-color);
}

.read-more svg {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.read-more:hover svg {
  transform: translateX(5px);
}

.future-quote {
  background-color: var(--bg-light);
  padding: 60px 0;
  margin: 60px 0;
}

.quote-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.quote-box blockquote {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--text-color);
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.quote-box blockquote::before,
.quote-box blockquote::after {
  content: '"';
  font-size: 3rem;
  color: rgba(45, 91, 255, 0.1);
  position: absolute;
  font-family: Georgia, serif;
}

.quote-box blockquote::before {
  top: -20px;
  left: -20px;
}

.quote-box blockquote::after {
  content: '"';
  bottom: -40px;
  right: -20px;
}

.quote-box cite {
  font-style: normal;
  font-weight: 600;
  color: var(--text-light);
}

.blog-poll,
.poll {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  margin-bottom: 60px;
}

.blog-poll h3,
.poll h3 {
  margin-bottom: 20px;
}

.poll-question,
.poll-container h3 {
  margin-bottom: 20px;
  font-weight: 600;
}

.poll-options {
  margin-bottom: 20px;
}

.poll-option {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.poll-option input[type="radio"] {
  margin-right: 10px;
}

.poll-results {
  margin-top: 20px;
}

.poll-results h4 {
  margin-bottom: 15px;
}

.result-bar {
  margin-bottom: 15px;
}

.result-label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.progress {
  background-color: var(--border-color);
  border-radius: 4px;
  height: 10px;
  overflow: hidden;
}

.progress-bar {
  background-color: var(--primary-color);
  height: 100%;
  text-align: right;
  padding-right: 5px;
  line-height: 10px;
  color: white;
  font-size: 0.75rem;
}

.newsletter {
  background-color: var(--primary-color);
  padding: 60px 0;
  color: white;
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter h2 {
  color: white;
  margin-bottom: 15px;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 12px 15px;
  border-radius: var(--border-radius);
  border: none;
  font-size: 1rem;
}

/* Blog Single Page */
.blog-header {
  background-color: var(--bg-light);
  padding: 120px 0 60px;
  text-align: center;
}

.blog-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
  color: var(--text-light);
}

.blog-category {
  color: var(--primary-color);
  font-weight: 600;
}

.blog-single {
  padding: 60px 0;
}

.blog-single .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.blog-content {
  background-color: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.featured-image {
  margin: -40px -40px 30px;
}

.featured-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.blog-content .lead {
  font-size: 1.2rem;
  color: var(--text-color);
  font-weight: 500;
  line-height: 1.7;
  border-left: 3px solid var(--primary-color);
  padding-left: 20px;
  margin-bottom: 30px;
}

.blog-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--text-color);
}

.blog-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--text-color);
}

.blog-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.blog-content ul, 
.blog-content ol {
  margin-bottom: 30px;
}

.blog-content li {
  margin-bottom: 10px;
}

.share-post {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.share-post h4 {
  margin-bottom: 15px;
}

.social-share {
  display: flex;
  gap: 10px;
}

.social-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-light);
  color: var(--text-color);
  transition: var(--transition);
}

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

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.author-card,
.related-posts,
.cta-sidebar {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--box-shadow);
}

.author-card {
  text-align: center;
}

.author-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

.author-card h3 {
  margin-bottom: 10px;
}

.author-card p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-light);
  color: var(--text-color);
  transition: var(--transition);
}

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

.related-posts h3 {
  margin-bottom: 20px;
}

.related-post {
  margin-bottom: 20px;
}

.related-post:last-child {
  margin-bottom: 0;
}

.related-post a {
  display: flex;
  align-items: center;
  gap: 15px;
}

.related-post img {
  width: 80px;
  height: 60px;
  border-radius: var(--border-radius);
  object-fit: cover;
}

.related-post h4 {
  font-size: 1rem;
  margin-bottom: 0;
  color: var(--text-color);
  transition: var(--transition);
}

.related-post a:hover h4 {
  color: var(--primary-color);
}

.cta-sidebar {
  text-align: center;
}

.cta-sidebar h3 {
  margin-bottom: 15px;
}

.cta-sidebar p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.blog-navigation {
  background-color: var(--bg-light);
  padding: 60px 0;
}

.blog-nav-links {
  display: flex;
  justify-content: space-between;
}

.prev-post,
.next-post {
  background-color: white;
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  width: 48%;
  transition: var(--transition);
}

.prev-post:hover,
.next-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.prev-post span,
.next-post span {
  display: block;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.prev-post h4,
.next-post h4 {
  color: var(--text-color);
  font-size: 1.1rem;
  margin-bottom: 0;
  transition: var(--transition);
}

.prev-post:hover h4,
.next-post:hover h4 {
  color: var(--primary-color);
}

.next-post {
  text-align: right;
}

/* About Page */
.about-intro {
  margin-bottom: 60px;
}

.about-intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.mission-vision {
  background-color: var(--bg-light);
  padding: 80px 0;
}

.mission-vision .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mission,
.vision,
.values {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
}

.icon {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.team {
  padding: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-member img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-member h3,
.team-member p,
.team-member .social-links {
  padding: 0 20px;
}

.team-member h3 {
  margin-top: 20px;
  margin-bottom: 5px;
}

.team-member p:first-of-type {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.team-member .social-links {
  padding-bottom: 20px;
  margin-top: 15px;
  justify-content: flex-start;
}

.stats {
  background-color: var(--primary-color);
  color: white;
  padding: 60px 0;
}

.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-text {
  font-size: 1.1rem;
  opacity: 0.9;
}

.clients {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.client-logo {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.client-logo img {
  max-height: 60px;
  max-width: 140px;
}

/* Services Page */
.services-overview {
  padding-top: 60px;
}

.service-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.service-features {
  text-align: left;
  margin-bottom: 20px;
}

.service-features li {
  margin-bottom: 8px;
  color: var(--text-light);
}

.process-steps {
  max-width: 800px;
  margin: 50px auto 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  width: 2px;
  height: 100%;
  background-color: var(--border-color);
  z-index: 1;
}

.process-step {
  display: flex;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  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;
  flex-shrink: 0;
}

.step-content {
  padding-left: 20px;
}

.step-content h3 {
  margin-bottom: 10px;
}

.pricing {
  background-color: var(--bg-light);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.pricing-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
}

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

.pricing-card.popular {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
  z-index: 1;
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-tag {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary-color);
  color: white;
  padding: 5px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 0 var(--border-radius) 0 var(--border-radius);
}

.pricing-header {
  padding: 30px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
  margin-bottom: 10px;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.currency {
  font-size: 1.5rem;
  margin-right: 5px;
  align-self: flex-start;
}

.pricing-header p {
  color: var(--text-light);
  margin-bottom: 0;
}

.pricing-features {
  padding: 30px;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 15px;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.pricing-footer {
  padding: 0 30px 30px;
  text-align: center;
}

.pricing-card.custom .price {
  font-size: 2rem;
}

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

.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-header {
  padding: 20px;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-header h3 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.accordion-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
}

.accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  padding-bottom: 20px;
}

/* Contact Page */
.contact-section {
  padding-top: 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info > p {
  margin-bottom: 30px;
}

.contact-methods {
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  margin-bottom: 25px;
}

.contact-icon {
  color: var(--primary-color);
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-details p {
  color: var(--text-light);
  margin-bottom: 5px;
}

.contact-details p a {
  color: var(--text-light);
  transition: var(--transition);
}

.contact-details p a:hover {
  color: var(--primary-color);
}

.contact-hours {
  font-size: 0.9rem;
  opacity: 0.8;
}

.social-contact h3 {
  margin-bottom: 15px;
}

.business-hours {
  margin-top: 40px;
}

.business-hours h3 {
  margin-bottom: 15px;
}

.business-hours ul {
  list-style: none;
  padding: 0;
}

.business-hours li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--text-light);
}

.business-hours li span {
  font-weight: 600;
  color: var(--text-color);
}

.contact-form-container {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--box-shadow);
}

.contact-form-container h2 {
  margin-bottom: 30px;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-group {
  width: calc(50% - 10px);
}

.form-group.full-width {
  width: 100%;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(45, 91, 255, 0.2);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 3px;
}

.checkbox-group label {
  font-size: 0.9rem;
  font-weight: 400;
}

.map-section {
  padding-top: 0;
}

.map-container {
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.map-placeholder {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1100;
  overflow: auto;
}

.modal-content {
  background-color: white;
  margin: 100px auto;
  max-width: 500px;
  border-radius: var(--border-radius);
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--text-color);
}

.modal-body {
  padding: 40px;
  text-align: center;
}

.modal-body h2 {
  margin-bottom: 15px;
}

.modal-body p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.checkmark {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: var(--primary-color);
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke-width: 3;
  stroke: var(--primary-color);
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .stats .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .blog-single .container {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header {
    padding: 10px 0;
  }
  
  nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: white;
    flex-direction: column;
    transition: var(--transition);
    z-index: 999;
  }
  
  nav.active {
    left: 0;
  }
  
  nav ul {
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: flex-start;
    padding: 20px;
  }
  
  nav ul li {
    margin: 0;
    margin-bottom: 20px;
    width: 100%;
  }
  
  nav ul li a {
    display: block;
    padding: 10px;
    width: 100%;
    text-align: center;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .about-intro .container {
    grid-template-columns: 1fr;
  }
  
  .mission-vision .container {
    grid-template-columns: 1fr;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    flex-direction: column;
  }
  
  .form-group {
    width: 100%;
  }
  
  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }
  
  .newsletter-form input[type="email"] {
    margin-bottom: 10px;
  }
  
  .blog-nav-links {
    flex-direction: column;
    gap: 20px;
  }
  
  .prev-post,
  .next-post {
    width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .services-grid,
  .team-grid,
  .blog-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .stats .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .client-logos {
    flex-direction: column;
  }
  
  .cookie-banner {
    bottom: 0;
    left: 0;
    width: 100%;
    transform: none;
    border-radius: 0;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
}
