/* ===================================
   SECTION STYLES - Additional Sections
   =================================== */

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 800;
  line-height: 1.2;
}

@media (min-width: 1600px) {
  .section-title {
    font-size: 3.5rem;
  }
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
  background: linear-gradient(180deg, #050505 0%, #080808 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 59, 59, 0.15) 0%,
    rgba(255, 0, 85, 0.08) 40%,
    rgba(5, 5, 5, 0) 70%
  );
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: float-glow 15s ease-in-out infinite;
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 0, 85, 0.12) 0%,
    rgba(255, 59, 59, 0.06) 40%,
    rgba(5, 5, 5, 0) 70%
  );
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: float-glow 18s ease-in-out infinite reverse;
}

@keyframes float-glow {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
    opacity: 1;
  }
}

.about-profile {
  display: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-content {
  animation: fadeInLeft 1s ease;
}

.profile-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.profile-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 59, 59, 0.3);
  box-shadow: 0 10px 30px rgba(255, 59, 59, 0.15);
}

.profile-image-wrapper {
  width: 100%;
  aspect-ratio: 1;
  max-width: 280px;
  margin: 0 auto 20px;
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid var(--glass-border);
  position: relative;
  transition: all 0.3s ease;
}

.profile-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.profile-card:hover .profile-image-wrapper {
  border-color: var(--primary-color);
}

.profile-card:hover .profile-image-wrapper::before {
  opacity: 0.1;
}

.profile-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-info {
  margin-top: 15px;
}

.profile-info h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.profile-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.profile-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 59, 59, 0.1);
  border: 1px solid rgba(255, 59, 59, 0.2);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 500;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about-text strong {
  color: var(--text-main);
  font-weight: 600;
}

.about-highlights {
  margin: 40px 0;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  align-items: start;
}

.profile-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 59, 59, 0.3);
  box-shadow: 0 10px 30px rgba(255, 59, 59, 0.15);
}

.profile-image-wrapper {
  width: 100%;
  aspect-ratio: 1;
  margin: 0 auto 20px;
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid var(--glass-border);
  position: relative;
  transition: all 0.3s ease;
}

.profile-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.profile-card:hover .profile-image-wrapper {
  border-color: var(--primary-color);
}

.profile-card:hover .profile-image-wrapper::before {
  opacity: 0.1;
}

.profile-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-info {
  margin-top: 15px;
}

.profile-info h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.profile-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.profile-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 59, 59, 0.1);
  border: 1px solid rgba(255, 59, 59, 0.2);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 500;
}

.highlights-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateX(10px);
}

.highlight-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 3px;
}

.highlight-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.highlight-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.about-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 59, 59, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.stat-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.stat-content h3 {
  font-size: 2rem;
  margin-bottom: 5px;
}

.stat-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===================================
   SKILLS SECTION
   =================================== */
.skills-section {
  background: #050505;
  position: relative;
  overflow: hidden;
}

.skills-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(255, 59, 59, 0.12) 0%,
    rgba(255, 0, 85, 0.06) 40%,
    rgba(5, 5, 5, 0) 70%
  );
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  animation: pulse-glow 12s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
}

.skills-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.skill-category {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
}

.skill-category:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 59, 59, 0.3);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--glass-border);
}

.category-header i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.category-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.skill-items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skill-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 25px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.skill-item:hover {
  background: rgba(255, 59, 59, 0.1);
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.skill-item i {
  font-size: 1.1rem;
  color: var(--primary-color);
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services-section {
  background: linear-gradient(180deg, #080808 0%, #050505 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 59, 59, 0.15) 0%,
    rgba(255, 0, 85, 0.08) 40%,
    rgba(5, 5, 5, 0) 70%
  );
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  animation: rotate-glow 20s linear infinite;
}

.services-section::after {
  content: '';
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(
    circle,
    rgba(255, 0, 85, 0.12) 0%,
    rgba(255, 59, 59, 0.06) 40%,
    rgba(5, 5, 5, 0) 70%
  );
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  animation: rotate-glow 25s linear infinite reverse;
}

@keyframes rotate-glow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 59, 59, 0.3);
  box-shadow: 0 10px 40px rgba(255, 59, 59, 0.15);
}

.service-card.featured {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, rgba(255, 59, 59, 0.05) 0%, var(--card-bg) 100%);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px 15px;
  background: var(--primary-gradient);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 59, 59, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.service-icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-card > p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 25px;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--glass-border);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features i {
  color: var(--primary-color);
  font-size: 0.8rem;
}

/* ===================================
   WORKS/PORTFOLIO SECTION
   =================================== */
.works-section {
  background: #050505;
  position: relative;
  overflow: hidden;
}

.works-section::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(255, 59, 59, 0.15) 0%,
    rgba(255, 0, 85, 0.08) 40%,
    rgba(5, 5, 5, 0) 70%
  );
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  animation: pulse-glow 14s ease-in-out infinite;
}

.works-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 0, 85, 0.1) 0%,
    rgba(255, 59, 59, 0.05) 40%,
    rgba(5, 5, 5, 0) 70%
  );
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  animation: pulse-glow 16s ease-in-out infinite reverse;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.work-item {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.work-item:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 59, 59, 0.3);
}

.work-image {
  position: relative;
  height: 250px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.work-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 59, 59, 0.2) 0%, rgba(255, 0, 85, 0.1) 100%);
  z-index: 1;
}

.work-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.work-item:hover .work-overlay {
  opacity: 1;
}

.work-link {
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.work-link:hover {
  transform: scale(1.1);
}

.work-content {
  padding: 25px;
}

.work-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.work-tags span {
  padding: 5px 15px;
  background: rgba(255, 59, 59, 0.1);
  border: 1px solid rgba(255, 59, 59, 0.2);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--primary-color);
}

.work-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.work-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials-section {
  background: linear-gradient(180deg, #050505 0%, #080808 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 35px;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 59, 59, 0.3);
}

.quote-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 59, 59, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.quote-icon i {
  font-size: 1.2rem;
  color: var(--primary-color);
}

.testimonial-text {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: rgba(255, 59, 59, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--glass-border);
}

.author-avatar i {
  font-size: 1.2rem;
  color: var(--primary-color);
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 3px;
}

.author-info p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.rating {
  display: flex;
  gap: 5px;
}

.rating i {
  color: #ffc107;
  font-size: 0.9rem;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
  background: linear-gradient(135deg, rgba(255, 59, 59, 0.1) 0%, rgba(255, 0, 85, 0.05) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 59, 59, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.cta-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-large,
.btn-secondary-large {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
  background: #050505;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 30%;
  left: -10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(
    circle,
    rgba(255, 59, 59, 0.18) 0%,
    rgba(255, 0, 85, 0.1) 40%,
    rgba(5, 5, 5, 0) 70%
  );
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: float-glow 16s ease-in-out infinite;
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 0, 85, 0.15) 0%,
    rgba(255, 59, 59, 0.08) 40%,
    rgba(5, 5, 5, 0) 70%
  );
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: float-glow 20s ease-in-out infinite reverse;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  border-color: var(--primary-color);
  transform: translateX(10px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 59, 59, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.2rem;
  color: var(--primary-color);
}

.contact-details h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.contact-details p,
.contact-details a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-details a:hover {
  color: var(--primary-color);
}

.contact-social {
  padding: 25px;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
}

.contact-social h4 {
  margin-bottom: 15px;
  font-size: 1rem;
}

.contact-form-wrapper {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  padding: 15px 20px;
  border-radius: 12px;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.05);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.cta-btn-full {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

/* Form Message Styles */
.form-message {
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: slideInUp 0.3s ease forwards;
}

.form-message i {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.form-message.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

@keyframes slideInUp {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */
@media (max-width: 992px) {
  .section-padding {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .about-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .profile-card {
    max-width: 350px;
    margin: 0 auto;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid,
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-content h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 40px 0;
  }


  .section-title {
    font-size: 2rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .about-text {
    text-align: center;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .skills-categories {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .works-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .work-image {
    height: 200px;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }
}
