:root {
  /* Primary colors */
  --primary-color: #0056b3;
  --primary-dark: #003d82;
  --primary-light: #3a7abd;
  
  /* Secondary colors */
  --secondary-color: #ff6b00;
  --secondary-dark: #e55400;
  --secondary-light: #ff8c33;
  
  /* Accent colors */
  --accent-1: #00c2a8;
  --accent-2: #ffcc00;
  --accent-3: #8a00e6;
  
  /* Neutral colors */
  --dark: #1a1a2e;
  --gray-dark: #333;
  --gray: #666;
  --gray-light: #aaa;
  --light: #f8f9fa;
  --white: #fff;
  
  /* UI colors */
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  --info: #17a2b8;
  
  /* Font families */
  --heading-font: 'Archivo Black', sans-serif;
  --body-font: 'Roboto', sans-serif;
  
  /* Sizing & spacing */
  --container-width-xl: 1200px;
  --container-width-lg: 1024px;
  --container-width-md: 768px;
  --container-width-sm: 576px;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 999px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 16px rgba(0,0,0,0.1);
  --shadow-xl: 0 12px 24px rgba(0,0,0,0.15);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--body-font);
  line-height: 1.6;
  color: var(--gray-dark);
  background-color: var(--light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  color: var(--dark);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: var(--space-md);
  position: relative;
}

h2:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: var(--space-sm) auto;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: var(--space-sm);
}

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

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

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

ul {
  list-style: none;
}

.section-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-lg);
  color: var(--gray);
  font-size: 1.1rem;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width-xl);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(255,255,255,0.1);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: -1;
}

.btn:hover:before {
  width: 100%;
}

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

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

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

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

button, input[type="submit"] {
  cursor: pointer;
  font-family: var(--body-font);
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: var(--space-sm) 0;
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  z-index: 1000;
  transition: var(--transition-normal);
}

.header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

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

.logo h1 {
  font-size: 1.8rem;
  margin: 0;
}

.nav-desktop ul {
  display: flex;
  gap: var(--space-md);
}

.nav-desktop a {
  color: var(--gray-dark);
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
}

.nav-desktop a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: width var(--transition-normal);
}

.nav-desktop a:hover {
  color: var(--primary-color);
}

.nav-desktop a:hover:after {
  width: 100%;
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.burger-menu span {
  display: block;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
}

.burger-menu.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.burger-menu.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  padding: var(--space-md) 0;
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.nav-mobile.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  display: block;
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.nav-mobile li {
  text-align: center;
}

.nav-mobile a {
  color: var(--gray-dark);
  font-weight: 500;
  display: block;
  padding: var(--space-xs) 0;
}

.nav-mobile a:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
  z-index: 1;
}

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

.hero-content {
  max-width: 700px;
  animation: fadeInUp 1.5s ease;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
  font-size: 3.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  max-width: 600px;
}

/* Services Section */
.services {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
}

.services .card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services .card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.services .card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.services .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.services .card:hover .card-image img {
  transform: scale(1.1);
}

.services .card-content {
  padding: var(--space-md);
  flex-grow: 1;
  text-align: center;
}

.services .card-content h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

/* Success Stories Section */
.success-stories {
  padding: var(--space-xl) 0;
  background-color: var(--light);
  position: relative;
  overflow: hidden;
}


.testimonials-slider {
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-md);
}

.testimonial-slide {
  display: none;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-md);
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.client-image {
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--primary-light);
  box-shadow: var(--shadow-md);
}

.client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  flex-grow: 1;
}

.testimonial-content h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-xs);
}

.client-name {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.testimonial-text {
  font-style: italic;
  color: var(--gray);
  line-height: 1.8;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
}

.prev-btn, .next-btn {
  background-color: var(--primary-color);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-normal);
}

.prev-btn:hover, .next-btn:hover {
  background-color: var(--primary-dark);
  transform: scale(1.1);
}

/* Team Section */
.team {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
}

.team .card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.team .card-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.team .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.team .card:hover .card-image img {
  transform: scale(1.05);
}

.team .card-content {
  padding: var(--space-md);
  text-align: center;
}

.team .card-content h3 {
  color: var(--primary-color);
  margin-bottom: 0;
}

.team .position {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.team .bio {
  color: var(--gray);
  line-height: 1.7;
}

/* External Resources Section */
.external-resources {
  padding: var(--space-xl) 0;
  background-color: var(--light);
  position: relative;
  overflow: hidden;
}

.external-resources:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, rgba(255,204,0,0.1) 0%, rgba(255,107,0,0.05) 90%);
  z-index: 0;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}

.resource-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.resource-card h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
  text-align: center;
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--primary-light);
}

.resource-card ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.resource-card a {
  color: var(--gray-dark);
  display: block;
  padding: var(--space-xs) 0;
  transition: var(--transition-fast);
  position: relative;
  padding-left: 20px;
}

.resource-card a:before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  transition: transform var(--transition-fast);
}

.resource-card a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.resource-card a:hover:before {
  transform: translateX(3px);
  color: var(--primary-color);
}

/* Projects Section */
.projects {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: var(--space-lg);
}

.projects .card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.projects .card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.projects .card-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.projects .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.projects .card:hover .card-image img {
  transform: scale(1.05);
}

.projects .card-content {
  padding: var(--space-md);
  text-align: center;
}

.projects .card-content h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-xs);
}

.projects .project-location {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.projects .project-desc {
  color: var(--gray);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

/* Pricing Section */
.pricing {
  padding: var(--space-xl) 0;
  background-color: var(--light);
  position: relative;
  overflow: hidden;
}

.pricing:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 70%, rgba(138,0,230,0.1) 0%, rgba(0,86,179,0.05) 90%);
  z-index: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-lg);
}

.pricing-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--secondary-color);
  z-index: 2;
}

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

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

.ribbon {
  position: absolute;
  top: 20px;
  right: -30px;
  width: 150px;
  height: 30px;
  background-color: var(--secondary-color);
  color: var(--white);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 30px;
  transform: rotate(45deg);
  box-shadow: var(--shadow-sm);
}

.pricing-header {
  background-color: var(--primary-color);
  color: var(--white);
  padding: var(--space-md);
  text-align: center;
}

.pricing-header h3 {
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.price span {
  font-size: 1rem;
  margin-left: 5px;
  opacity: 0.8;
}

.pricing-features {
  padding: var(--space-md);
  flex-grow: 1;
}

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

.pricing-features li {
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--gray-light);
  position: relative;
  padding-left: 25px;
}

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

.pricing-footer {
  padding: var(--space-md);
  text-align: center;
}

.custom-pricing {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-md);
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}

.custom-pricing h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

.custom-pricing p {
  margin-bottom: var(--space-md);
  color: var(--gray);
}

/* Contact Section */
.contact {
  padding: var(--space-xl) 0;
  background-color: var(--white);
  position: relative;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.info-item h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-xs);
}

.info-item p {
  color: var(--gray);
}

.map-container {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: var(--space-md);
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form {
  background-color: var(--light);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: var(--gray-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-sm);
  background-color: var(--white);
  font-family: var(--body-font);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.2);
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer Section */
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-logo h2 {
  color: var(--white);
  text-align: left;
  margin-bottom: var(--space-sm);
}

.footer-logo h2:after {
  display: none;
}

.footer-logo p {
  color: var(--gray-light);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.footer-links-column h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-xs);
}

.footer-links-column h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer-links-column ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-links-column a {
  color: var(--gray-light);
  transition: var(--transition-fast);
}

.footer-links-column a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a:before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.social-links a[href*="facebook"]:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23aaa' d='M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z'/%3E%3C/svg%3E");
}

.social-links a[href*="twitter"]:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23aaa' d='M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z'/%3E%3C/svg%3E");
}

.social-links a[href*="instagram"]:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23aaa' d='M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z'/%3E%3C/svg%3E");
}

.social-links a[href*="linkedin"]:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23aaa' d='M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z'/%3E%3C/svg%3E");
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--gray-light);
  margin: 0;
}

/* Success Page */
.success-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: var(--space-md);
}

.success-page h1 {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.success-page p {
  max-width: 600px;
  margin-bottom: var(--space-md);
  color: var(--gray);
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  position: relative;
}

.success-icon:before {
  content: '✓';
  font-size: 50px;
  color: var(--white);
}

/* Privacy & Terms Pages */
.page-content {
  padding: 120px var(--space-md) var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
}

.page-content h1 {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.page-content h2 {
  text-align: left;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
}

.page-content h2:after {
  margin-left: 0;
}

.page-content p {
  margin-bottom: var(--space-md);
  color: var(--gray);
  line-height: 1.8;
}

.page-content ul {
  list-style: disc;
  margin-left: var(--space-md);
  margin-bottom: var(--space-md);
}

.page-content li {
  margin-bottom: var(--space-xs);
  color: var(--gray);
}

/* Cookie Consent */
#cookie-consent {
  animation: slideUp 0.5s forwards;
}

#accept-cookies:hover {
  background-color: #45a049;
}

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

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Read More Links */
.read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 500;
  position: relative;
  padding-right: 20px;
  transition: var(--transition-fast);
}

.read-more:after {
  content: '→';
  position: absolute;
  right: 0;
  transition: transform var(--transition-fast);
}

.read-more:hover {
  color: var(--primary-dark);
  padding-right: 25px;
}

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

/* Media Queries */
@media (max-width: 1200px) {
  .project-grid {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .footer-logo {
    text-align: center;
    margin-bottom: var(--space-md);
  }
  
  .footer-logo h2 {
    text-align: center;
  }
  
  .footer-logo h2:after {
    display: block;
    margin: var(--space-sm) auto;
  }
  
  .testimonial-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .client-image {
    margin-bottom: var(--space-md);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .nav-desktop {
    display: none;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .project-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .footer-links-column {
    text-align: center;
  }
  
  .footer-links-column h3 {
    text-align: center;
  }
  
  .footer-links-column h3:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .pricing-card.featured {
    transform: scale(1);
    margin-top: var(--space-md);
    margin-bottom: var(--space-md);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .services-grid,
  .team-grid,
  .resources-grid {
    grid-template-columns: 1fr;
  }
}