/* Custom CSS for Remotely Website */

/* Root Variables - Design System Colors */
:root {
  --primary-color: #164e63;
  --secondary-color: #6366f1;
  --accent-color: #6366f1;
  --background-color: #ffffff;
  --foreground-color: #475569;
  --card-background: #ecfeff;
  --card-foreground: #164e63;
  --muted-background: #f9fafb;
  --muted-foreground: #4b5563;
  --border-color: #d1d5db;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;
  --radius: 0.5rem;
}

/* Typography */
body {
  font-family: "Open Sans", sans-serif;
  color: var(--foreground-color);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.3;
}

.hero-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1.2;
  color: var(--primary-color);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

/* Navigation */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar-brand {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--primary-color) !important;
  text-decoration: none;
}

.brand-text {
  color: var(--primary-color);
}

.nav-link {
  font-weight: 600;
  color: var(--foreground-color) !important;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color) !important;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0f3a47;
  border-color: #0f3a47;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(22, 78, 99, 0.3);
}

.btn-outline-secondary {
  color: var(--foreground-color);
  border-color: var(--border-color);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
  background-color: var(--foreground-color);
  border-color: var(--foreground-color);
  color: white;
}

/* Hero Section */
.hero-section {
  padding-top: 100px;
  background: linear-gradient(135deg, #f8fafc 0%, #ecfeff 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  padding: 2rem 0;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--muted-foreground);
  margin: 2rem 0;
  line-height: 1.6;
}

.hero-buttons {
  margin: 2rem 0;
}

.hero-stats {
  margin-top: 3rem;
}

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

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  margin: 0;
}

.hero-image img {
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Page Header */
.page-header {
  padding: 150px 0 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #ecfeff 100%);
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--muted-foreground);
}

/* Services Section */
.services-section {
  background-color: var(--background-color);
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--border-color);
}

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

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: white;
}

.service-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.service-card p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.service-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: var(--primary-color);
}

/* Why Choose Section */
.why-choose-section {
  background-color: var(--muted-background);
}

.feature-list {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.feature-item i {
  color: var(--success-color);
  font-size: 1.5rem;
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.feature-item h5 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.feature-item p {
  color: var(--muted-foreground);
  margin: 0;
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--background-color);
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  border: 1px solid var(--border-color);
}

.stars {
  color: #fbbf24;
}

.testimonial-content p {
  font-style: italic;
  color: var(--foreground-color);
  margin-bottom: 1.5rem;
}

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

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
}

.author-info h6 {
  margin: 0;
  color: var(--primary-color);
  font-weight: 600;
}

.author-info span {
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.cta-title {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  font-weight: 600;
}

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

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: white;
}

.footer-logo {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: white !important;
  text-decoration: none;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  margin: 1rem 0;
}

.footer-links h6 {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: white;
}

.social-links {
  margin-top: 1.5rem;
}

.social-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: white;
  text-decoration: none;
  margin-right: 0.5rem;
  transition: all 0.3s ease;
}

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

.footer-divider {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 2rem 0;
}

.footer-copyright,
.footer-contact {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* About Page Styles */
.about-content {
  background-color: var(--background-color);
}

.about-text {
  padding: 2rem 0;
}

.about-image img {
  border-radius: 1rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.mission-points {
  margin-top: 2rem;
}

.mission-point {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.mission-point i {
  color: var(--secondary-color);
  font-size: 2rem;
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.mission-point h5 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.mission-point p {
  color: var(--muted-foreground);
  margin: 0;
}

/* Values Section */
.values-section {
  background-color: var(--muted-background);
}

.value-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

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

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.value-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.value-card p {
  color: var(--muted-foreground);
}

/* Team Section */
.team-section {
  background-color: var(--background-color);
}

.team-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.team-info {
  padding: 2rem;
  text-align: center;
}

.team-info h4 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.team-role {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.team-social a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: var(--muted-background);
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  color: var(--primary-color);
  text-decoration: none;
  margin: 0 0.25rem;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background-color: var(--secondary-color);
  color: white;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.stat-card {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.5rem;
}

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

/* Services Page Styles */
.services-overview {
  background-color: var(--muted-background);
}

.service-overview-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

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

.service-detail {
  background-color: var(--background-color);
}

.service-detail.bg-light {
  background-color: var(--muted-background) !important;
}

.service-content {
  padding: 2rem 0;
}

.service-features {
  margin: 2rem 0;
}

.service-features .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.service-features .feature-item i {
  color: var(--success-color);
  margin-right: 1rem;
  font-size: 1.2rem;
}

.service-features .feature-item span {
  color: var(--foreground-color);
}

.service-technologies {
  margin-top: 2rem;
}

.service-technologies h5 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-badge {
  background-color: var(--card-background);
  color: var(--card-foreground);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid var(--border-color);
}

.service-image img {
  border-radius: 1rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Additional Services */
.additional-services {
  background-color: var(--muted-background);
}

.additional-service-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

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

.additional-service-card .service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: white;
}

.additional-service-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.additional-service-card p {
  color: var(--muted-foreground);
}

/* Process Section */
.process-section {
  background-color: var(--background-color);
}

.process-step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 auto 1.5rem;
}

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

.process-step p {
  color: var(--muted-foreground);
}

/* Portfolio Page Styles */
.portfolio-filter {
  background-color: var(--muted-background);
}

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

.filter-btn {
  background: white;
  border: 2px solid var(--border-color);
  color: var(--foreground-color);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.portfolio-grid {
  background-color: var(--background-color);
}

.portfolio-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

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

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

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(22, 78, 99, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

.portfolio-link {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.portfolio-link:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: scale(1.1);
}

.portfolio-content {
  padding: 2rem;
}

.portfolio-category {
  color: var(--secondary-color);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

.portfolio-content p {
  color: var(--muted-foreground);
  margin: 0;
}

/* Blog Page Styles */
.featured-post {
  background-color: var(--background-color);
}

.featured-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.featured-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.featured-content {
  padding: 3rem;
}

.post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.post-category {
  background-color: var(--secondary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.post-date {
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

.featured-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.featured-content p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.blog-posts {
  background-color: var(--muted-background);
}

.blog-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
}

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

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

.blog-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--secondary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.blog-date,
.blog-author {
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

.blog-content h4 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-content h4 a:hover {
  color: var(--secondary-color);
}

.blog-content p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.read-more {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: var(--primary-color);
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form .input-group {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.newsletter-form .form-control {
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1rem;
}

.newsletter-form .btn {
  border: none;
  padding: 1rem 2rem;
  font-weight: 600;
}

/* Contact Page Styles */
.contact-section {
  background-color: var(--background-color);
}

.contact-form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  border: 2px solid var(--border-color);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

.contact-info {
  background: white;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
  height: fit-content;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: white;
  font-size: 1.2rem;
}

.contact-details h5 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.contact-details p {
  color: var(--muted-foreground);
  margin: 0;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.social-icons .social-link {
  width: 40px;
  height: 40px;
  background-color: var(--muted-background);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

/* FAQ Section */
.faq-section {
  background-color: var(--muted-background);
}

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

.accordion-button {
  background-color: white;
  color: var(--primary-color);
  font-weight: 600;
  border: none;
  padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
  background-color: var(--card-background);
  color: var(--card-foreground);
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

.accordion-body {
  padding: 1.5rem;
  color: var(--muted-foreground);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    text-align: center;
  }

  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .filter-buttons {
    justify-content: center;
  }

  .filter-btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  .tech-badges {
    justify-content: center;
  }

  .contact-form-wrapper,
  .contact-info {
    padding: 2rem;
  }

  .featured-content {
    padding: 2rem;
  }

  .featured-content h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .service-card,
  .value-card,
  .additional-service-card {
    padding: 2rem;
  }

  .team-info,
  .blog-content {
    padding: 1.5rem;
  }

  .contact-form-wrapper,
  .contact-info {
    padding: 1.5rem;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Utility Classes */
.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}
