/* ========================================
   CSS Custom Properties (Design System)
   ======================================== */

:root {
  /* Colors - Pure White (#FFFFFF) - Clarity and Cleanliness */
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(0, 0%, 11%); /* Black Carbon (#1C1C1C) - Premium text */

  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(0, 0%, 11%);

  --popover: hsl(0, 0%, 100%);
  --popover-foreground: hsl(0, 0%, 11%);

  /* Blue Deep (#1A4C8B) - Trust and Professionalism */
  --primary: hsl(211, 68%, 32%);
  --primary-foreground: hsl(0, 0%, 100%);

  /* Green Soft (#5CB85C) - Medical Accent (USE SPARINGLY - only for key CTAs) */
  --secondary: hsl(120, 41%, 54%);
  --secondary-foreground: hsl(0, 0%, 100%);

  /* Grey Stone (#B3B3B3) - Sophisticated body text */
  --muted: hsl(0, 0%, 98%); /* Very light grey for subtle backgrounds */
  --muted-foreground: hsl(0, 0%, 45%); /* Darker grey for better readability on white */

  /* Accent uses primary blue */
  --accent: hsl(211, 68%, 32%);
  --accent-foreground: hsl(0, 0%, 100%);

  --destructive: hsl(0, 84%, 60%);
  --destructive-foreground: hsl(0, 0%, 100%);

  /* Minimal borders */
  --border: hsl(0, 0%, 90%);
  --input: hsl(0, 0%, 90%);
  --ring: hsl(211, 68%, 32%); /* Blue Deep focus ring */

  --radius: 0.5rem;

  /* Minimalist gradients - subtle elegance */
  --gradient-hero: linear-gradient(135deg, hsl(211, 68%, 32%) 0%, hsl(0, 0%, 11%) 100%);
  --gradient-subtle: linear-gradient(180deg, hsl(0, 0%, 100%) 0%, hsl(0, 0%, 99%) 100%);
  --gradient-premium: linear-gradient(180deg, hsl(0, 0%, 100%) 0%, hsl(0, 0%, 98%) 100%);

  /* Refined shadows - soft and elegant */
  --shadow-soft: 0 1px 3px hsla(0, 0%, 0%, 0.04);
  --shadow-medium: 0 4px 12px hsla(0, 0%, 0%, 0.08);
  --shadow-elegant: 0 8px 24px hsla(0, 0%, 0%, 0.06);

  /* Smooth transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   Reset and Base Styles
   ======================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ========================================
   Layout Utilities
   ======================================== */

.container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ========================================
   Navigation
   ======================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: hsla(0, 0%, 100%, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.navbar-container {
  max-width: 1400px;
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
}

.logo {
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.logo:hover {
  opacity: 0.8;
}

.logo-title {
  font-size: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--primary);
}

.logo-subtitle {
  font-size: 0.875rem;
  font-family: 'Lato', sans-serif;
  color: var(--muted-foreground);
}

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

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  color: var(--foreground);
  transition: var(--transition-smooth);
  position: relative;
}

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

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--foreground);
  transition: var(--transition-smooth);
}

.mobile-menu-btn:hover {
  color: var(--primary);
}

.mobile-menu-btn .close-icon {
  display: none;
}

.mobile-menu-btn.active .menu-icon {
  display: none;
}

.mobile-menu-btn.active .close-icon {
  display: block;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  background-color: var(--background);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-medium);
}

.mobile-menu.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

.mobile-menu-content {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.5rem 0;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  color: var(--foreground);
  transition: var(--transition-smooth);
}

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

.mobile-nav-btn {
  width: 100%;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius);
  transition: var(--transition-smooth);
  cursor: pointer;
  white-space: nowrap;
}

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

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background-color: hsl(211, 68%, 28%);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  background-color: hsl(120, 41%, 48%);
  box-shadow: var(--shadow-medium);
}

.btn-outline {
  background-color: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background-color: var(--muted);
}

/* ========================================
   Home Section
   ======================================== */

.section-home {
  padding-top: 10rem;
  padding-bottom: 2.67rem;
  padding-left: 1rem;
  padding-right: 1rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: flex-start;
}

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

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

.hero-title {
  font-size: 3.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-text {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  font-family: 'Open Sans', sans-serif;
  max-width: 36rem;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-buttons-centered {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 3rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons-centered {
    flex-direction: row;
  }
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: var(--shadow-elegant);
}

/* ========================================
   Values Section
   ======================================== */

.section-values {
  padding-top: 8rem;
  padding-bottom: 8rem;
  padding-left: 1rem;
  padding-right: 1rem;
  background: var(--gradient-premium);
}

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

.section-title {
  font-size: 3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  font-family: 'Open Sans', sans-serif;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.value-card {
  background-color: var(--background);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.value-card:hover {
  box-shadow: var(--shadow-elegant);
}

.value-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin-left: auto;
  margin-right: auto;
  background-color: hsla(211, 68%, 32%, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.value-title {
  font-size: 1.125rem;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  color: var(--foreground);
}

.value-text {
  color: var(--muted-foreground);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
  line-height: 1.75;
}

/* ========================================
   About Section
   ======================================== */

.section-about {
  padding-top: 2.67rem;
  padding-bottom: 5.33rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: start;
}

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

.about-image {
  order: 2;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.about-image img {
  box-shadow: var(--shadow-elegant);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  order: 1;
}

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

.about-title {
  font-size: 3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.2;
}

.about-text-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  font-family: 'Open Sans', sans-serif;
  line-height: 1.75;
}

/* ========================================
   CTA Section
   ======================================== */

.section-cta {
  padding-top: 5.33rem;
  padding-bottom: 8rem;
  padding-left: 1rem;
  padding-right: 1rem;
  background: var(--gradient-hero);
}

.cta-content {
  text-align: center;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-title {
  font-size: 3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: white;
  margin-bottom: 2rem;
}

.cta-text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  font-family: 'Open Sans', sans-serif;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

/* ========================================
   Profile Section
   ======================================== */

.section-profile {
  padding-top: 10rem;
  padding-bottom: 2.67rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.profile-container {
  max-width: 80rem;
}

.profile-about-header {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
}

.profile-about-image {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.profile-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-about-content {
  flex: 1;
}

.profile-about-title {
  font-size: 3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.profile-about-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  font-family: 'Open Sans', sans-serif;
  line-height: 1.75;
}

.profile-card {
  background-color: var(--background);
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  margin-bottom: 4rem;
}

.card-premium {
  background: var(--gradient-premium);
}

.profile-section-title {
  font-size: 2.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 2.5rem;
}

.profile-text-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.profile-text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  font-family: 'Open Sans', sans-serif;
  line-height: 1.75;
}

.education-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.education-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  border-left: 2px solid var(--primary);
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.education-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 0px;
  background: white;
  padding: 0.5rem;
}

.education-content {
  flex: 1;
}

.education-title {
  font-size: 1.25rem;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.education-institution {
  color: var(--muted-foreground);
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 0.25rem;
}

.education-year {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-family: 'Open Sans', sans-serif;
}

@media (max-width: 768px) {
  .education-item {
    gap: 1rem;
  }

  .education-logo {
    width: 60px;
    height: 60px;
  }
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.expertise-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  background-color: var(--background);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.expertise-item:hover {
  box-shadow: var(--shadow-elegant);
  border-color: var(--primary);
  transform: translateY(-4px);
}

.expertise-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, hsla(211, 68%, 32%, 0.1) 0%, hsla(211, 68%, 32%, 0.05) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.expertise-item:hover .expertise-icon {
  background: linear-gradient(135deg, hsla(211, 68%, 32%, 0.15) 0%, hsla(211, 68%, 32%, 0.08) 100%);
  transform: scale(1.05);
}

.expertise-title {
  font-size: 1.25rem;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.3;
  margin: 0;
}

.expertise-description {
  color: var(--muted-foreground);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

.expertise-bullet {
  width: 0.375rem;
  height: 0.375rem;
  background-color: var(--secondary);
  border-radius: 50%;
  flex-shrink: 0;
}

.expertise-text {
  color: var(--foreground);
  font-family: 'Open Sans', sans-serif;
}

/* ========================================
   Blog Section
   ======================================== */

.section-blog {
  padding-top: 3.33rem;
  padding-bottom: 2.67rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.blog-container {
  max-width: 96rem;
}

.blog-header {
  text-align: center;
  margin-bottom: 6rem;
}

.blog-main-title {
  font-size: 3.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 2rem;
}

.blog-main-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  font-family: 'Open Sans', sans-serif;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.blog-featured {
  background: var(--gradient-premium);
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-elegant);
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .blog-featured {
    padding: 4rem;
  }
}

.featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.featured-badge {
  padding: 0.375rem 1rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
}

.featured-date,
.featured-time {
  color: var(--muted-foreground);
  font-family: 'Open Sans', sans-serif;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.featured-title {
  font-size: 2.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .featured-title {
    font-size: 3rem;
  }
}

.featured-excerpt {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 6rem;
}

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

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

.article-card {
  background-color: var(--background);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.article-card:hover {
  box-shadow: var(--shadow-elegant);
}

.article-category {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background-color: hsla(120, 41%, 54%, 0.1);
  color: var(--secondary);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.article-title {
  font-size: 1.25rem;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
  line-height: 1.3;
  transition: var(--transition-smooth);
}

.article-card:hover .article-title {
  color: var(--primary);
}

.article-excerpt {
  color: var(--muted-foreground);
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 1.5rem;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 1.5rem;
}

.article-date,
.article-time {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.article-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.article-link {
  color: var(--primary);
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.article-card:hover .article-link {
  gap: 0.75rem;
}

.blog-newsletter {
  background: var(--gradient-hero);
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-elegant);
  text-align: center;
}

@media (min-width: 768px) {
  .blog-newsletter {
    padding: 4rem;
  }
}

.newsletter-title {
  font-size: 2.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
}

.newsletter-text {
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Open Sans', sans-serif;
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

/* ========================================
   Contact Section
   ======================================== */

.section-contact {
  padding-top: 2.67rem;
  padding-bottom: 2.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.contact-container {
  max-width: 96rem;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-main-title {
  font-size: 3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.contact-main-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  font-family: 'Open Sans', sans-serif;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 2fr 1fr;
    align-items: start;
  }
}

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

.contact-form-title {
  font-size: 1.875rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.contact-form-info {
  color: var(--muted-foreground);
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.contact-mailto-btn {
  width: 100%;
}

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

.contact-info-card {
  background-color: var(--background);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--transition-smooth);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-medium);
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  background-color: hsla(211, 68%, 32%, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.contact-info-title {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.contact-info-content {
  color: var(--foreground);
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 0.25rem;
}

.contact-info-details {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-family: 'Open Sans', sans-serif;
}

.contact-map {
  background-color: var(--muted);
  height: 16rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--primary);
}

.contact-map p {
  color: var(--muted-foreground);
  font-family: 'Open Sans', sans-serif;
}

/* ========================================
   Footer
   ======================================== */

.footer {
  background: var(--gradient-premium);
  margin-top: 4rem;
  border-top: 1px solid var(--border);
}

.footer-container {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

.footer-brand-title {
  font-size: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.footer-brand-text {
  color: var(--muted-foreground);
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: var(--muted-foreground);
  transition: var(--transition-smooth);
}

.footer-social a:hover {
  color: var(--primary);
}

.footer-links-title,
.footer-contact-title {
  font-size: 1.125rem;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.footer-links-list,
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  color: var(--muted-foreground);
  font-family: 'Open Sans', sans-serif;
  transition: var(--transition-smooth);
}

.footer-links-list a:hover {
  color: var(--primary);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted-foreground);
  font-family: 'Open Sans', sans-serif;
}

.footer-contact-list li svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
  color: var(--primary);
}

.footer-contact-list a {
  transition: var(--transition-smooth);
}

.footer-contact-list a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--muted-foreground);
  font-family: 'Open Sans', sans-serif;
}

/* ========================================
   Animations
   ======================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   Responsive adjustments
   ======================================== */

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

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

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

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

  .profile-about-title,
  .blog-main-title {
    font-size: 2rem;
  }

  .profile-about-header {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .profile-about-image {
    width: 150px;
    height: 150px;
  }

  .profile-about-subtitle {
    font-size: 1.125rem;
  }
}
