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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #151312;
  color: #fff;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: #f46c38;
  color: #fff;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #151312;
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* ===== TOP NAV ===== */
.top-nav {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  background: rgba(30, 28, 27, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 5px 8px;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.top-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.top-nav-btn:hover {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
}

.top-nav-btn.active {
  color: #fff;
  background: rgba(244, 108, 56, 0.2);
  box-shadow: inset 0 0 0 1px rgba(244, 108, 56, 0.4);
}

.top-nav-btn.active svg {
  filter: drop-shadow(0 0 6px rgba(244, 108, 56, 0.4));
}

.nav-tooltip {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(30, 28, 27, 0.95);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.top-nav-btn:hover .nav-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== PAGE LAYOUT ===== */
.page {
  display: flex;
  max-width: 1140px;
  margin: 0 auto;
  padding: 100px 20px;
  gap: 100px;
  position: relative;
}

.page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ===== SIDEBAR ===== */
.sidebar {
  flex-shrink: 0;
  position: sticky;
  top: 100px;
  align-self: flex-start;
  z-index: 2;
}

.sidebar-card {
  width: 344px;
  background: #fff;
  border-radius: 24px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.sidebar-card::before {
  display: none;
}

.card-deco {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}

.profile-img {
  width: 240px;
  height: 280px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: none;
  background: #f46c38;
  z-index: 1;
}

.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.sidebar-card:hover .profile-img img {
  transform: scale(1.03);
}

.card-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.name {
  font-size: 30px;
  font-weight: 700;
  color: #151312;
  letter-spacing: -0.5px;
  line-height: 1.1;
  text-align: center;
}

.profile-badge {
  width: 36px;
  height: 36px;
  background: #f46c38;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-top: -4px;
}

.bio {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  text-align: center;
  line-height: 1.7;
  max-width: 260px;
  margin-top: 4px;
}

.social-links {
  display: flex;
  gap: 14px;
  width: auto;
  position: relative;
  z-index: 1;
  margin-top: 4px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(244, 108, 56, 0.1);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  transition: all 0.25s ease;
  text-decoration: none;
  color: #f46c38;
}

.social-btn span {
  display: none;
}

.social-btn:hover {
  background: #f46c38;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(244, 108, 56, 0.3);
}

/* ===== MAIN ===== */
.main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 1;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
}

/* ===== FILTERING TRANSITIONS ===== */
.content-section {
  transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.5s ease, margin 0.4s ease, padding 0.4s ease;
  overflow-y: hidden;
}

.content-section.section-hidden {
  opacity: 0;
  transform: translateY(-10px);
  max-height: 0;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  pointer-events: none;
}

.content-section.section-visible {
  opacity: 1;
  transform: translateY(0);
  max-height: 2000px;
  pointer-events: auto;
}

/* ===== HERO ===== */
.hero {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-heading {
  display: flex;
  flex-direction: column;
  font-size: clamp(48px, 6vw, 110px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-heading-solid {
  color: #fff;
  text-shadow: 0 2px 40px rgba(255,255,255,0.08);
}

.hero-heading-outline {
  color: rgba(182, 180, 189, 0.2);
  -webkit-text-stroke: 1px rgba(182, 180, 189, 0.15);
  text-stroke: 1px rgba(182, 180, 189, 0.15);
}

.hero-description {
  font-size: 18px;
  font-weight: 400;
  color: #998f8f;
  line-height: 1.6;
  max-width: 480px;
}

.stats {
  display: flex;
  gap: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
  position: relative;
}

.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}

.stat-number {
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.7px;
  line-height: 1.2;
  background: linear-gradient(135deg, #fff 60%, rgba(255,255,255,0.6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 16px;
  font-weight: 400;
  color: #998f8f;
  letter-spacing: -0.16px;
  line-height: 1.3;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  border-radius: 12px;
  padding: 30px 24px 24px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card-orange {
  background: #f46c38;
  box-shadow: 0 8px 30px rgba(244, 108, 56, 0.25);
}

.service-card-orange:hover {
  box-shadow: 0 12px 40px rgba(244, 108, 56, 0.35);
}

.service-card-green {
  background: #c5ff41;
  box-shadow: 0 8px 30px rgba(197, 255, 65, 0.15);
}

.service-card-green:hover {
  box-shadow: 0 12px 40px rgba(197, 255, 65, 0.25);
}

.service-card-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.3;
}

.service-card-deco-orange {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 50 Q25 30 50 50 T100 50' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'/%3E%3C/svg%3E") repeat;
  background-size: 80px 80px;
}

.service-card-deco-green {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 L15 15 L30 30 L45 15 L60 30' fill='none' stroke='rgba(21,19,18,0.15)' stroke-width='2'/%3E%3C/svg%3E") repeat;
  background-size: 60px 60px;
}

.service-card-icon {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1;
}

.service-card-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card-orange .service-card-title {
  color: #fff;
}

.service-card-green .service-card-title {
  color: #151312;
}

/* ===== SECTIONS ===== */
.section {
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.04);
  margin-top: 40px;
}

.section:first-of-type {
  border-top: none;
  margin-top: 0;
}

.section-heading {
  display: flex;
  flex-direction: column;
  font-size: clamp(48px, 7vw, 90px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
}

.section-heading span:first-child {
  color: #fff;
}

.section-heading-outline {
  color: rgba(182, 180, 189, 0.2);
  -webkit-text-stroke: 0.5px rgba(182, 180, 189, 0.1);
  text-stroke: 0.5px rgba(182, 180, 189, 0.1);
}

/* ===== PROJECTS ===== */
.project-list,
.exp-list,
.blog-list {
  display: flex;
  flex-direction: column;
}

.project-item,
.exp-item,
.blog-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px;
  border-radius: 12px;
  text-decoration: none;
  position: relative;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.project-item:hover,
.exp-item:hover,
.blog-item:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
}

.project-thumb {
  width: 120px;
  height: 96px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(197, 255, 65, 0.3);
  position: relative;
}

.live-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 10px;
  height: 10px;
  background: #c5ff41;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(197, 255, 65, 0.6);
  z-index: 2;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.project-item:hover .project-thumb img {
  transform: scale(1.05);
}

.project-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.project-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  transition: color 0.2s;
}

.project-item:hover .project-info h3 {
  color: #f46c38;
}

.project-info p {
  font-size: 14px;
  font-weight: 400;
  color: #998f8f;
  line-height: 1.4;
}

.project-arrow {
  margin-left: auto;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0.3;
  color: #f46c38;
  flex-shrink: 0;
}

.project-item:hover .project-arrow {
  transform: rotate(0deg) scale(1.1);
  opacity: 1;
}

.project-hidden {
  display: none;
}

.project-hidden.project-visible {
  display: flex;
}

.show-more-btn {
  display: block;
  width: 100%;
  padding: 12px;
  margin-top: 12px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.show-more-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ===== EXPERIENCE ===== */
.exp-item {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px 16px;
}

.exp-item:hover .exp-info h3 {
  color: #f46c38;
}

.exp-item .project-arrow {
  top: 28px;
}

.exp-info {
  max-width: 420px;
}

.exp-date {
  font-size: 16px;
  font-weight: 400;
  color: #998f8f;
  line-height: 1.1;
  text-align: right;
  align-self: flex-end;
  padding-right: 40px;
}

/* ===== TOOLS ===== */
.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.tool-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.tool-item:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
  transform: translateX(4px);
}

.tool-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.tool-item:hover .tool-icon {
  transform: scale(1.08);
}

.tool-icon svg {
  width: 28px;
  height: 28px;
}

.tool-item h3 {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  transition: color 0.2s;
}

.tool-item:hover h3 {
  color: #c5ff41;
}

.tool-item p {
  font-size: 16px;
  font-weight: 400;
  color: #998f8f;
  line-height: 1.4;
}

/* ===== BLOG ===== */
.blog-item {
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 16px;
  gap: 12px;
}

.blog-item:hover .blog-info h3 {
  color: #f46c38;
}

.blog-item .project-arrow {
  top: 34px;
}

.blog-info {
  max-width: 480px;
}

.blog-info h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.blog-info p {
  font-size: 16px;
  font-weight: 400;
  color: #998f8f;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 664px;
  font-size: 14px;
  color: #6a6b6e;
  padding-right: 40px;
}

/* ===== CONTACT ===== */
.contact-form-wrapper {
  width: 100%;
  max-width: 696px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

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

.form-row .form-group {
  flex: 1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-label {
  font-size: 12px;
  font-weight: 500;
  color: #888;
  font-family: 'Poppins', sans-serif;
}

.form-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.form-input-wrapper input,
.form-input-wrapper textarea {
  width: 100%;
  background: rgba(182, 180, 189, 0.2);
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: all 0.25s ease;
}

.form-input-wrapper input::placeholder,
.form-input-wrapper textarea::placeholder {
  color: #999;
  font-weight: 400;
}

.form-input-wrapper input:focus,
.form-input-wrapper textarea:focus {
  border-color: #f46c38;
  background: rgba(182, 180, 189, 0.25);
}

.form-textarea-wrapper {
  align-items: flex-start;
}

.form-textarea-wrapper textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  height: 44px;
  background: #f46c38;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.form-submit:hover {
  background: #e55a2b;
  transform: translateY(-1px);
}

.form-status {
  font-size: 14px;
  text-align: center;
  min-height: 20px;
}

.form-success {
  color: #c5ff41;
}

.form-error {
  color: #f46c38;
}

.form-success {
  color: #c5ff41;
}

.form-error {
  color: #ff6b6b;
}

/* ===== FOOTER ===== */
.footer {
  margin-top: 120px;
  padding: 40px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer p {
  font-size: 14px;
  color: #6a6b6e;
  font-weight: 400;
}

/* ===== RESPONSIVE ===== */

/* Tablet landscape / small desktop */
@media (max-width: 1024px) {
  .page {
    flex-direction: column;
    gap: 60px;
    padding: 100px 24px;
  }

  .sidebar {
    position: static;
    align-self: center;
  }

  .sidebar-card {
    width: 100%;
    max-width: 400px;
  }

  .main {
    width: 100%;
  }

  .stats {
    flex-wrap: wrap;
    gap: 32px;
  }

  .stat:not(:last-child)::after {
    display: none;
  }

  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .tools-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-info {
    padding-right: 40px;
  }

  .form-row {
    flex-direction: column;
  }
}

/* Tablet portrait */
@media (max-width: 768px) {
  .page {
    padding: 90px 20px;
    gap: 48px;
  }

  .top-nav {
    top: 16px;
    padding: 6px 10px;
    gap: 4px;
  }

  .top-nav-btn {
    width: 40px;
    height: 40px;
  }

  .top-nav-btn svg {
    width: 18px;
    height: 18px;
  }

  .hero-heading {
    font-size: clamp(40px, 10vw, 80px);
  }

  .stats {
    gap: 28px;
  }

  .stat-number {
    font-size: clamp(32px, 6vw, 56px);
  }

  .stat-label {
    font-size: 14px;
  }

  .service-cards {
    gap: 20px;
  }

  .service-card {
    padding: 32px 20px 20px;
  }

  .section-heading {
    font-size: clamp(36px, 8vw, 72px);
  }

  .project-info {
    padding-right: 0;
  }

  .project-thumb {
    width: 100px;
    height: 80px;
  }

  .exp-item {
    padding: 20px 12px;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  .tool-item {
    padding: 14px;
  }

  .tool-icon {
    width: 52px;
    height: 52px;
  }

  .tool-item h3 {
    font-size: 22px;
  }

  .blog-item {
    padding: 24px 12px;
  }

  .blog-info h3 {
    font-size: 20px;
  }

  .contact-form {
    max-width: 100%;
  }

  .footer {
    margin-top: 80px;
    padding: 32px 0 16px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .top-nav {
    top: 10px;
    padding: 5px 6px;
    gap: 2px;
    border-radius: 12px;
  }

  .top-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .top-nav-btn svg {
    width: 16px;
    height: 16px;
  }

  .nav-tooltip {
    display: none;
  }

  .page {
    padding: 32px 14px;
    gap: 32px;
  }

  .sidebar-card {
    padding: 24px 18px;
    border-radius: 18px;
    gap: 14px;
  }

  .profile-img {
    width: 200px;
    height: 240px;
    border-radius: 16px;
  }

  .profile-badge {
    width: 32px;
    height: 32px;
  }

  .name {
    font-size: 24px;
  }

  .bio {
    font-size: 13px;
    max-width: 240px;
  }

  .social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }

  .social-btn span {
    display: none;
  }

  .hero {
    gap: 32px;
  }

  .hero-heading {
    font-size: clamp(36px, 12vw, 64px);
  }

  .hero-description {
    font-size: 15px;
    line-height: 1.5;
  }

  .stats {
    gap: 20px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 12px;
  }

  .service-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 24px 16px 18px;
    border-radius: 8px;
    gap: 18px;
  }

  .service-card-title {
    font-size: 18px;
  }

  .section {
    padding-top: 48px;
    margin-top: 24px;
  }

  .section-heading {
    font-size: clamp(32px, 10vw, 48px);
    margin-bottom: 12px;
  }

  .project-item {
    padding: 14px 12px;
  }

  .project-thumb {
    width: 80px;
    height: 64px;
  }

  .project-info h3,
  .exp-info h3 {
    font-size: 17px;
  }

  .project-info p,
  .exp-info p {
    font-size: 13px;
  }

  .project-arrow {
    display: none;
  }

  .exp-item {
    padding: 16px 12px;
    border-radius: 8px;
  }

  .exp-date {
    padding-right: 0;
    align-self: flex-start;
    font-size: 14px;
  }

  .tool-item {
    padding: 12px;
    gap: 12px;
  }

  .tool-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
  }

  .tool-icon svg {
    width: 22px;
    height: 22px;
  }

  .tool-item h3 {
    font-size: 18px;
  }

  .tool-item p {
    font-size: 13px;
  }

  .blog-item {
    padding: 20px 12px;
    border-radius: 8px;
  }

  .blog-info h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .blog-info p {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }

  .blog-meta {
    font-size: 12px;
  }


  .form-input-wrapper input,
  .form-input-wrapper textarea {
    padding: 12px 14px 12px 44px;
    font-size: 14px;
    border-radius: 8px;
  }

  .form-input-icon {
    left: 14px;
  }

  .form-submit {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
    border-radius: 8px;
  }

  .footer {
    margin-top: 60px;
    padding: 24px 0 12px;
  }

  .footer p {
    font-size: 12px;
  }
}

/* Very small screens */
@media (max-width: 380px) {
  .top-nav {
    top: 8px;
    padding: 4px 5px;
  }

  .top-nav-btn {
    width: 32px;
    height: 32px;
  }

  .top-nav-btn svg {
    width: 14px;
    height: 14px;
  }

  .page {
    padding: 28px 12px;
    gap: 24px;
  }

  .sidebar-card {
    padding: 20px 14px;
    gap: 12px;
    border-radius: 16px;
  }

  .profile-img {
    width: 180px;
    height: 210px;
    border-radius: 14px;
  }

  .profile-badge {
    width: 30px;
    height: 30px;
  }

  .name {
    font-size: 20px;
  }

  .bio {
    font-size: 12px;
  }

  .social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
  }

  .social-btn svg {
    width: 14px;
    height: 14px;
  }

  .social-btn span {
    display: none;
  }

  .hero-heading {
    font-size: clamp(28px, 11vw, 48px);
  }

  .stats {
    gap: 16px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 11px;
  }

  .section-heading {
    font-size: clamp(28px, 9vw, 40px);
  }
}

.floating-buttons {
  position: fixed;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.floating-left {
  left: 24px;
}

.floating-right {
  right: 24px;
}

.floating-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.floating-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.floating-whatsapp {
  background: #25d366;
  color: #fff;
}

.floating-phone {
  background: #f46c38;
  color: #fff;
}

.floating-email {
  background: #c5ff41;
  color: #151312;
}

@media (max-width: 480px) {
  .floating-left {
    bottom: 16px;
    left: 16px;
  }

  .floating-right {
    bottom: 16px;
    right: 16px;
  }

  .floating-btn {
    padding: 8px 12px;
    font-size: 12px;
  }

  .floating-btn span {
    display: none;
  }

  .floating-btn svg {
    margin: 0;
  }
}
