:root {
  --sky-50: #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-200: #bae6fd;
  --sky-400: #38bdf8;
  --sky-500: #0ea5e9;
  --sky-600: #0284c7;
  --sky-700: #0369a1;
  --gray-900: #111827;
  --yellow-400: #facc15;
  --green-100: #dcfce7;
  --green-600: #16a34a;
  --muted: #6b7280;
  --white: #ffffff;
  --border: #e5e7eb;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(to right, var(--sky-600), var(--sky-500));
  color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: linear-gradient(to right, var(--sky-700), var(--sky-600));
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background: transparent;
  color: var(--gray-900);
  border: 1px solid var(--sky-200);
}

.btn-outline:hover {
  background: var(--sky-50);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.header-container {
  display: flex;
  height: 64px;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.logo svg {
  width: 24px;
  height: 24px;
  color: var(--sky-500);
}

.nav-desktop {
  display: none;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  .nav-mobile-btn {
    display: none !important;
  }
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.dropdown {
  position: relative;
}

.dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.dropdown-btn:hover {
  color: var(--sky-500);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  width: 12rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--sky-100);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.dropdown-menu a:hover {
  background: var(--sky-50);
  color: var(--sky-600);
}

.dropdown-divider {
  border-top: 1px solid var(--sky-100);
  margin: 0.25rem 0;
}

.dropdown-menu .highlight {
  color: var(--sky-600);
  font-weight: 500;
}

.nav-mobile-btn {
  display: flex;
}

.nav-mobile-btn .dropdown-btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--sky-600), var(--sky-500));
  color: white;
}

.nav-mobile-btn .dropdown-btn:hover {
  background: linear-gradient(to right, var(--sky-600), var(--sky-500));
  color: white;
}

.nav-mobile-btn .dropdown-menu {
  right: 0;
  left: auto;
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 5rem 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--sky-50), white);
}

.hero-blur-1 {
  position: absolute;
  top: -6rem;
  right: -6rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: var(--sky-100);
  opacity: 0.5;
  filter: blur(48px);
}

.hero-blur-2 {
  position: absolute;
  bottom: -8rem;
  left: -8rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: var(--sky-100);
  opacity: 0.5;
  filter: blur(48px);
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .hero {
    padding: 8rem 0;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--sky-700);
  background: white;
  border: 1px solid var(--sky-200);
  border-radius: 9999px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--sky-500);
  margin-right: 0.5rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(to right, var(--gray-900), var(--sky-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 640px) {
  h1 {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }
}

h2 {
  font-size: 1.875rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--gray-900), var(--sky-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  h2 {
    font-size: 2.25rem;
  }
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.text-muted {
  color: var(--muted);
}

.text-lg {
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .text-lg {
    font-size: 1.25rem;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .hero-btns {
    flex-direction: row;
    gap: 1rem;
  }
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.feature-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 9999px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  font-size: 0.875rem;
}

.feature-tag svg {
  width: 16px;
  height: 16px;
  color: var(--sky-500);
}

.quote-card {
  position: relative;
  margin-top: 1.5rem;
}

.quote-card-bg {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  border: 1px solid var(--sky-200);
  background: rgba(255, 255, 255, 0.5);
}

.quote-card-inner {
  position: relative;
  background: white;
  border: 1px solid var(--sky-100);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.quote-card h3 {
  margin-bottom: 1rem;
}

section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  section {
    padding: 6rem 0;
  }
}

@media (min-width: 1024px) {
  section {
    padding: 8rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
}

.service-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  position: relative;
  overflow: hidden;
  background: white;
  border: 1px solid var(--sky-100);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s;
}

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

.service-card-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--sky-400), var(--sky-600));
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sky-100);
  color: var(--sky-600);
  margin-bottom: 1rem;
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background: var(--sky-600);
  color: white;
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.service-card:hover h3 {
  color: var(--sky-600);
}

.learn-more {
  display: inline-flex;
  align-items: center;
  color: var(--sky-600);
  font-weight: 500;
  margin-top: 1rem;
}

.learn-more svg {
  width: 16px;
  height: 16px;
  margin-left: 0.25rem;
}

.service-card:hover .learn-more {
  text-decoration: underline;
}

.tabs {
  max-width: 800px;
  margin: 3rem auto 0;
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.25rem;
  padding: 0.25rem;
  background: var(--sky-50);
  border: 1px solid var(--sky-100);
  border-radius: 9999px;
}

.tab-btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: transparent;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn.active {
  background: white;
  color: var(--sky-700);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tab-content {
  display: none;
  margin-top: 2rem;
}

.tab-content.active {
  display: block;
}

.process-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.process-list {
  list-style: none;
}

.process-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: white;
  padding: 0.75rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  margin-bottom: 0.75rem;
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--sky-100);
  color: var(--sky-600);
  font-size: 0.75rem;
  font-weight: 500;
}

.process-img {
  position: relative;
}

.process-img-bg {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  border: 1px solid var(--sky-200);
  background: rgba(255, 255, 255, 0.5);
}

.process-img img {
  position: relative;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.about-section {
  background: linear-gradient(to bottom, var(--sky-50), white);
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-img {
  position: relative;
  order: 2;
}

@media (min-width: 1024px) {
  .about-img {
    order: 1;
  }
  .about-content {
    order: 2;
  }
}

.about-img-border-1 {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  border: 1px solid var(--sky-200);
  background: rgba(255, 255, 255, 0.5);
}

.about-img-border-2 {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  border: 1px solid var(--sky-200);
  background: rgba(255, 255, 255, 0.5);
}

.about-img img {
  position: relative;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.eco-badge {
  position: absolute;
  bottom: -1rem;
  left: 1rem;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 0.75rem;
  z-index: 2;
  display: none;
}

@media (min-width: 768px) {
  .eco-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
}

.eco-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-600);
}

.about-list {
  list-style: none;
  margin-top: 0.5rem;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: white;
  padding: 0.75rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  margin-bottom: 0.75rem;
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--sky-100);
  color: var(--sky-600);
}

.check-icon svg {
  width: 16px;
  height: 16px;
}

.why-grid {
  display: grid;
  gap: 2rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  position: relative;
  overflow: hidden;
  background: white;
  border: 1px solid var(--sky-100);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s;
}

.why-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.why-card-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--sky-400), var(--sky-600));
}

.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sky-100);
  color: var(--sky-600);
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.why-card:hover .why-icon {
  background: var(--sky-600);
  color: white;
}

.why-icon svg {
  width: 32px;
  height: 32px;
}

.why-card h3 {
  margin-bottom: 0.75rem;
}

.testimonials-section {
  background: linear-gradient(to bottom, var(--sky-50), white);
}

.testimonial-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 2rem auto 0;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  background: white;
  border: 1px solid var(--sky-100);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.testimonial-card-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--sky-400), var(--sky-600));
}

.stars {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.stars svg {
  width: 20px;
  height: 20px;
  color: var(--yellow-400);
  fill: var(--yellow-400);
}

.stars span {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.testimonial-card p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.testimonial-author {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: auto;
}

.testimonial-author .name {
  font-weight: 500;
}

.testimonial-author .role {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.service-areas {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .service-areas {
    grid-template-columns: 1fr 1fr;
  }
}

.map-container {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--sky-100);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

.areas-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  list-style: none;
  margin-top: 1rem;
}

.areas-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.areas-list svg {
  width: 20px;
  height: 20px;
  color: var(--sky-500);
}

.contact-section {
  background: linear-gradient(to bottom, var(--sky-50), white);
}

.contact-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--sky-100);
  color: var(--sky-600);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-item h4 {
  font-size: 1.125rem;
  font-weight: 500;
}

.contact-item p {
  color: var(--muted);
}

.contact-item .note {
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.contact-form-card {
  position: relative;
}

.contact-form-bg {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  border: 1px solid var(--sky-200);
  background: rgba(255, 255, 255, 0.5);
}

.contact-form-inner {
  position: relative;
  background: white;
  border: 1px solid var(--sky-100);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.contact-form-inner h3 {
  margin-bottom: 1rem;
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sky-500);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

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

.form-submit {
  width: 100%;
}

footer {
  position: relative;
  width: 100%;
  border-top: 1px solid var(--border);
  background: var(--sky-50);
  padding: 3rem 0 4rem;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand .logo {
  margin-bottom: 0.5rem;
}

footer h4 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

footer ul {
  list-style: none;
}

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

footer ul a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s;
}

footer ul a:hover {
  color: var(--sky-500);
}

.footer-bottom {
  border-top: 1px solid var(--sky-100);
  margin-top: 2.5rem;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.relative {
  position: relative;
}

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

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.hidden {
  display: none;
}

@media (min-width: 768px) {
  .md-hidden {
    display: none;
  }
  .md-flex {
    display: flex;
  }
  .md-inline-flex {
    display: inline-flex;
  }
}

.form-status {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  display: none;
}

.form-status.success {
  display: block;
  background: var(--green-100);
  color: var(--green-600);
}

.form-status.error {
  display: block;
  background: #fee2e2;
  color: #dc2626;
}

.form-status.loading {
  display: block;
  background: var(--sky-100);
  color: var(--sky-700);
}

.blog-grid {
  display: grid;
  gap: 2rem;
  max-width: 1000px;
  margin: 2rem auto 0;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.blog-card {
  position: relative;
  overflow: hidden;
  background: white;
  border: 1px solid var(--sky-100);
  border-radius: 1rem;
  transition: all 0.3s;
}

.blog-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.blog-card-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--sky-400), var(--sky-600));
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.blog-card-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.blog-meta svg {
  width: 14px;
  height: 14px;
}

.blog-card h3 {
  margin-bottom: 0.75rem;
}

.blog-card h3 a:hover {
  color: var(--sky-500);
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-top: 1rem;
}

.blog-author svg {
  width: 16px;
  height: 16px;
  color: var(--muted);
}

.btn-center {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.google-btn svg {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}
