/* ==================== RESET & VARIABLES ==================== */
:root {
  --primary-color: red;
  --secondary-color: #333333;
  --light-color: #f5f5f5;
  --text-color: #333333;
  --white: #ffffff;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==================== HEADER & NAVIGATION ==================== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: var(--shadow);
}

.banner {
  background: linear-gradient(135deg, var(--primary-color), #ff6666);
  color: var(--white);
  padding: 12px 0;
  text-align: center;
  font-weight: 500;
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.navbar {
  background-color: var(--white);
  padding: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.navbar-logo h1 {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.navbar-logo h1 span {
  color: var(--primary-color);
}

.navbar-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.navbar-menu a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 5px;
  transition: var(--transition);
  position: relative;
}

.navbar-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
  width: 100%;
}

.navbar-menu a:hover {
  color: var(--primary-color);
}

.navbar-menu a.active {
  color: var(--primary-color);
}

/* ==================== HAMBURGER MENU ==================== */
.nav-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.line {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ==================== HERO SECTION ==================== */
.hero {
  padding: 80px 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 68, 68, 0.05),
    rgba(51, 51, 51, 0.05)
  );
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 50%;
  border: 5px solid var(--primary-color);
  box-shadow: 0 10px 40px rgba(255, 68, 68, 0.2);
  object-fit: cover;
}

.hero-text {
  animation: fadeInUp 0.8s ease;
}

.greeting h1 {
  font-size: 2rem;
  color: var(--text-color);
  margin-bottom: 10px;
}

.name {
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(135deg, var(--primary-color), red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 20px;
  font-weight: 500;
}

.bio {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
  text-align: justify;
}

.social-links {
  display: flex;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.social-links a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(255, 68, 68, 0.2);
}

.social-links a:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 68, 68, 0.4);
  background-color: red;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  padding: 14px 32px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
  min-width: 160px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), red);
  color: var(--white);
  box-shadow: 0 5px 15px rgba(255, 68, 68, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 68, 68, 0.4);
}

.btn-secondary {
  background-color: var(--light-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* ==================== SKILLS SECTION ==================== */
.skills {
  padding: 100px 20px;
  background-color: var(--light-color);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 50px;
  color: var(--text-color);
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), red);
  border-radius: 2px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.skill-card {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  animation: fadeInUp 0.8s ease;
}

.skill-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 68, 68, 0.2);
}

.skill-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.skill-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.skill-card p {
  color: #666;
  line-height: 1.6;
}

/* ==================== FEATURES SECTION ==================== */
.features {
  padding: 100px 20px;
  background-color: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.feature-item {
  background: linear-gradient(
    135deg,
    rgba(255, 68, 68, 0.05),
    rgba(51, 51, 51, 0.05)
  );
  padding: 40px;
  border-radius: 10px;
  border-left: 5px solid var(--primary-color);
  transition: var(--transition);
}

.feature-item:hover {
  box-shadow: var(--shadow);
  transform: translateX(10px);
}

.feature-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
  opacity: 0.3;
}

.feature-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.feature-item p {
  color: #666;
  line-height: 1.6;
}

/* ==================== FOOTER ==================== */
footer {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  color: var(--white);
  padding: 60px 20px 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.footer-section h3 {
  font-size: 1.5rem;
}

.footer-section h4 {
  font-size: 1.1rem;
}

.footer-section p {
  color: #bbb;
  line-height: 1.8;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #bbb;
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--primary-color);
  margin-left: 5px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  font-size: 1rem;
}

.footer-social a:hover {
  transform: translateY(-5px);
  background-color: red;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #999;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .navbar-container {
    flex-direction: row;
    height: 70px;
    padding: 0 20px;
    gap: 0;
    justify-content: space-between;
  }

  .navbar-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background-color: var(--white);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    width: 100%;
    padding: 0;
    margin: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-toggle:checked ~ .hamburger .line-1 {
    transform: rotate(45deg) translate(10px, 10px);
  }

  .nav-toggle:checked ~ .hamburger .line-2 {
    opacity: 0;
  }

  .nav-toggle:checked ~ .hamburger .line-3 {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  .nav-toggle:checked ~ .navbar-menu {
    max-height: 300px;
    padding: 20px 0;
  }

  .navbar-menu li {
    width: 100%;
  }

  .navbar-menu a {
    display: block;
    width: 100%;
    padding: 15px 20px;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }

  .navbar-menu a::after {
    display: none;
  }

  .navbar-menu a:hover {
    background-color: var(--light-color);
  }

  .navbar-menu a.active {
    background-color: rgba(255, 68, 68, 0.1);
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image img {
    max-width: 280px;
  }

  .name {
    font-size: 2rem;
  }

  .greeting h1 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .skills-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hero {
    padding: 40px 15px;
  }

  .name {
    font-size: 1.5rem;
  }

  .greeting h1 {
    font-size: 1.2rem;
  }

  .social-links {
    gap: 15px;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .skill-icon {
    font-size: 2rem;
  }

  .feature-number {
    font-size: 2rem;
  }

  .navbar-logo h1 {
    font-size: 1.5rem;
  }

  .banner p {
    font-size: 0.9rem;
  }
}

/* ==================== ANIMATIONS ==================== */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Smooth transitions for all interactive elements */
button,
a {
  transition: var(--transition);
}
/* ==================== PAGE TITLE SECTION ==================== */
.about-hero,
.services-hero,
.contact-hero {
  background: linear-gradient(135deg, var(--primary-color), #ff6666);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-subtitle {
  font-size: 1.2rem;
  opacity: 0.95;
}

/* ==================== ABOUT PAGE STYLES ==================== */
.about-content {
  padding: 100px 20px;
  background-color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(255, 68, 68, 0.2);
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--text-color);
}

.about-subtitle-text {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 500;
}

.about-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  padding: 30px;
  background-color: var(--light-color);
  border-radius: 10px;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-item p {
  color: #666;
  font-weight: 500;
}

/* Timeline Styles */
.journey {
  padding: 100px 20px;
  background-color: var(--light-color);
}

.timeline {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-color), #ff6666);
}

.timeline-item {
  margin-bottom: 50px;
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: 0;
  margin-right: 50%;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 50%;
  margin-right: 0;
  text-align: left;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  background-color: var(--primary-color);
  border: 3px solid var(--white);
  border-radius: 50%;
  z-index: 10;
}

.timeline-content {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.timeline-content h3 {
  font-size: 1.3rem;
  color: var(--text-color);
  margin-bottom: 10px;
}

.timeline-content p {
  color: #666;
  line-height: 1.6;
}

/* Values Section */
.values {
  padding: 100px 20px;
  background-color: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  text-align: center;
  padding: 40px;
  background: linear-gradient(
    135deg,
    rgba(255, 68, 68, 0.05),
    rgba(51, 51, 51, 0.05)
  );
  border-radius: 10px;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.value-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.value-card p {
  color: #666;
  line-height: 1.6;
}

/* ==================== SERVICES PAGE STYLES ==================== */
.services-section {
  padding: 100px 20px;
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  border-top: 4px solid var(--primary-color);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 68, 68, 0.2);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.service-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  margin-bottom: 20px;
}

.service-features li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: #555;
  font-size: 0.95rem;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Process Section */
.process {
  padding: 100px 20px;
  background-color: var(--light-color);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow);
}

.process-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.process-step p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Pricing Section */
.pricing {
  padding: 100px 20px;
  background-color: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  border: 2px solid #eee;
  transition: var(--transition);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(255, 68, 68, 0.2);
}

.pricing-card .badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--text-color);
}

.price {
  margin-bottom: 30px;
  padding: 20px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.price .currency {
  font-size: 1.2rem;
  color: var(--primary-color);
}

.price .amount {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--text-color);
}

.price .period {
  font-size: 0.95rem;
  color: #999;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  color: #555;
  display: flex;
  align-items: center;
}

.pricing-features li i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 0.9rem;
}

.pricing-features .unavailable {
  opacity: 0.5;
  color: #999;
}

/* ==================== CONTACT PAGE STYLES ==================== */
.contact-info-section {
  padding: 100px 20px;
  background-color: var(--light-color);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-card {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 68, 68, 0.2);
}

.contact-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.contact-info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.contact-info-card p {
  color: #666;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* Contact Form Section */
.contact-form-section {
  padding: 100px 20px;
  background-color: var(--white);
}

.contact-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.form-intro {
  text-align: center;
  margin-bottom: 50px;
}

.form-intro h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.form-intro p {
  color: #666;
  font-size: 1.05rem;
}

.contact-form {
  background: linear-gradient(
    135deg,
    rgba(255, 68, 68, 0.05),
    rgba(51, 51, 51, 0.05)
  );
  padding: 40px;
  border-radius: 10px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  color: var(--text-color);
  background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.1);
}

.form-group textarea {
  resize: vertical;
  font-family: inherit;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group.checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.form-group.checkbox input {
  width: auto;
  margin-right: 10px;
  cursor: pointer;
}

.form-group.checkbox label {
  margin: 0;
  cursor: pointer;
  font-weight: 400;
}

.submit-btn {
  width: 100%;
  padding: 14px 20px;
  font-size: 1rem;
  cursor: pointer;
}

/* Social Section */
.social-section {
  padding: 100px 20px;
  background-color: var(--light-color);
}

.social-links-large {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.social-links-large a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: var(--white);
  border-radius: 10px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.social-links-large a i {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.social-links-large a:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, var(--primary-color), #ff6666);
  color: var(--white);
  box-shadow: 0 15px 40px rgba(255, 68, 68, 0.2);
}

/* CTA Section */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary-color), #ff6666);
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

/* ==================== RESPONSIVE ADJUSTMENTS ==================== */
@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }

  .about-grid,
  .contact-form-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 0;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 50px;
    margin-right: 0;
    text-align: left;
  }

  .timeline-item::before {
    left: -8px;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .social-links-large {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 1.5rem;
  }

  .about-text h2 {
    font-size: 1.5rem;
  }

  .timeline-content {
    padding: 20px;
  }

  .service-card,
  .value-card,
  .process-step,
  .contact-info-card {
    padding: 25px;
  }

  .values-grid,
  .process-grid,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 25px;
  }

  .contact-form {
    padding: 20px;
  }

  .social-links-large {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-section .cta-buttons a {
    width: 100%;
  }
}
