@keyframes shimmerWave {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}

@keyframes gentleGlow {
  0%, 100% {
    box-shadow: 
      0 4px 20px rgba(35, 159, 64, 0.15),
      0 0 40px rgba(35, 159, 64, 0.08);
  }
  50% {
    box-shadow: 
      0 4px 25px rgba(218, 0, 0, 0.15),
      0 0 45px rgba(218, 0, 0, 0.08);
  }
}

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

body {
  font-family: 'Helvetica Neue', 'Arial', sans-serif;
  font-weight: 300;
  line-height: 1.8;
  color: #1a1a1a;
  background: #ffffff;
  letter-spacing: 0.3px;
}

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

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  font-weight: 300;
  color: #000000;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.logo a:hover {
  opacity: 0.7;
}

.logo-icon {
  height: 40px;
  width: auto;
  display: block;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

.main-nav a {
  color: #000000;
  text-decoration: none;
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.main-nav a:hover {
  opacity: 0.5;
}

.site-main {
  min-height: calc(100vh - 200px);
  padding: 0;
}

.hero-banner {
  background: linear-gradient(135deg, #239F40 0%, #ffffff 50%, #DA0000 100%);
  padding: 120px 0 140px 0;
  margin-bottom: 60px;
  border-bottom: 1px solid #e5e5e5;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  animation: gentleGlow 4s ease-in-out infinite;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.15) 45%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0.15) 55%,
    transparent 60%,
    transparent 100%
  );
  animation: shimmerWave 6s ease-in-out infinite;
  pointer-events: none;
}

.hero-banner .container {
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-banner h1 {
  font-size: 3rem;
  font-weight: 200;
  color: #000000;
  margin-bottom: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-banner p {
  font-size: 1.1rem;
  font-weight: 300;
  color: #666666;
  letter-spacing: 0.5px;
  max-width: 800px;
  opacity: 0.8;
}

section {
  margin-bottom: 80px;
}

section h2 {
  font-size: 1.8rem;
  font-weight: 300;
  color: #000000;
  margin-bottom: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 15px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.article-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.article-card:hover {
  border-color: #000000;
}

.article-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #f5f5f5;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.article-card:hover .article-image img {
  filter: grayscale(0%);
}

.article-content {
  padding: 30px;
}

.article-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 0.75rem;
}

.category {
  display: inline-block;
  padding: 6px 12px;
  background: transparent;
  color: #000000;
  text-decoration: none;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid #000000;
}

.date,
.views {
  color: #999999;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.article-content h3 {
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.article-content h3 a {
  color: #000000;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.article-content h3 a:hover {
  opacity: 0.5;
}

.article-content p {
  color: #666666;
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 1.8;
}

.read-more {
  color: #000000;
  text-decoration: none;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid #000000;
  padding-bottom: 2px;
  transition: opacity 0.3s ease;
}

.read-more:hover {
  opacity: 0.5;
}

.articles-list {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  padding: 40px;
}

.article-item {
  display: flex;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid #e5e5e5;
}

.article-item:last-child {
  border-bottom: none;
}

.article-thumbnail {
  flex-shrink: 0;
  width: 250px;
  height: 180px;
  overflow: hidden;
  background: #f5f5f5;
}

.article-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.article-item:hover .article-thumbnail img {
  filter: grayscale(0%);
}

.article-details {
  flex: 1;
}

.article-details h2 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.article-details h2 a {
  color: #000000;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.article-details h2 a:hover {
  opacity: 0.5;
}

.article-page {
  background: #ffffff;
  padding-top: 60px;
  margin-bottom: 80px;
}

.article-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.article-breadcrumb {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
  color: #999999;
}

.article-breadcrumb a {
  color: #999999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-breadcrumb a:hover {
  color: #000000;
}

.article-category-tag {
  margin-bottom: 20px;
}

.article-category-tag a {
  display: inline-block;
  padding: 8px 16px;
  background: transparent;
  color: #000000;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #000000;
  transition: opacity 0.3s ease;
}

.article-category-tag a:hover {
  opacity: 0.7;
}

.article-page-header {
  margin-bottom: 50px;
}

.article-page-header h1 {
  font-size: 3rem;
  font-weight: 200;
  color: #000000;
  margin-bottom: 25px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.article-excerpt {
  font-size: 1.2rem;
  font-weight: 300;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 25px;
}

.article-page-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.85rem;
  color: #999999;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.meta-divider {
  opacity: 0.5;
}

.article-source-attribution {
  margin-top: 20px;
  padding: 15px 20px;
  background: #f8f8f8;
  border-left: 3px solid #239F40;
  font-size: 0.9rem;
  color: #666666;
  font-weight: 300;
  line-height: 1.6;
}

.article-source-attribution strong {
  font-weight: 400;
  color: #000000;
}

.article-source-attribution a {
  color: #239F40;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.article-source-attribution a:hover {
  border-bottom-color: #239F40;
}

.article-featured-image {
  margin: 50px 0;
  overflow: hidden;
}

.article-featured-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
}

.article-content-wrapper {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
  color: #333333;
  margin-bottom: 50px;
}

.article-content-wrapper p {
  margin-bottom: 25px;
}

.article-content-wrapper h1,
.article-content-wrapper h2,
.article-content-wrapper h3 {
  margin-top: 50px;
  margin-bottom: 25px;
  color: #000000;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.3;
}

.article-content-wrapper h1 {
  font-size: 2rem;
}

.article-content-wrapper h2 {
  font-size: 1.6rem;
}

.article-content-wrapper h3 {
  font-size: 1.3rem;
}

.article-content-wrapper ul,
.article-content-wrapper ol {
  margin-bottom: 25px;
  margin-left: 30px;
  line-height: 1.9;
}

.article-content-wrapper li {
  margin-bottom: 10px;
}

.article-content-wrapper img {
  max-width: 100%;
  height: auto;
  margin: 40px 0;
  filter: grayscale(100%);
}

.article-content-wrapper blockquote {
  margin: 40px 0;
  padding: 30px 40px;
  background: #fafafa;
  border-left: 3px solid #000000;
  font-style: italic;
  color: #666666;
}

.article-footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e5e5e5;
}

.article-tags-section {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.tags-label {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000000;
  white-space: nowrap;
  padding-top: 8px;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-tag {
  display: inline-block;
  padding: 8px 16px;
  background: #ffffff;
  color: #000000;
  border: 1px solid #e5e5e5;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.article-tag:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.related-section {
  background: #fafafa;
  padding: 80px 0;
  margin-bottom: 0;
}

.related-title {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: #000000;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 20px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.related-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  transition: border-color 0.3s ease;
}

.related-card:hover {
  border-color: #000000;
}

.related-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f5f5f5;
}

.related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.related-card:hover .related-image img {
  filter: grayscale(0%);
}

.related-content {
  padding: 25px;
}

.related-content h3 {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.related-content h3 a {
  color: #000000;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.related-content h3 a:hover {
  opacity: 0.5;
}

.related-content p {
  color: #666666;
  font-weight: 300;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.related-link {
  display: inline-block;
  color: #000000;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid #000000;
  padding-bottom: 2px;
  transition: opacity 0.3s ease;
}

.related-link:hover {
  opacity: 0.5;
}

.category-hero {
  background: linear-gradient(135deg, #239F40 0%, #ffffff 50%, #DA0000 100%);
  color: #000000;
  padding: 0;
  margin-bottom: 60px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  animation: gentleGlow 4s ease-in-out infinite;
}

.category-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.15) 45%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0.15) 55%,
    transparent 60%,
    transparent 100%
  );
  animation: shimmerWave 6s ease-in-out infinite;
  pointer-events: none;
}

.category-hero .container {
  width: 100%;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
  opacity: 0.7;
}

.breadcrumb a {
  color: #000000;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
  opacity: 0.5;
}

.category-hero h1 {
  font-size: 3rem;
  font-weight: 200;
  margin-bottom: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #000000;
}

.category-hero p {
  font-size: 1.1rem;
  font-weight: 300;
  opacity: 0.8;
  letter-spacing: 0.5px;
  max-width: 800px;
  color: #666666;
}

.category-content {
  margin-bottom: 80px;
}

.articles-grid-category {
  display: grid;
  gap: 40px;
  margin-bottom: 60px;
}

.category-article-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  padding: 40px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  transition: border-color 0.3s ease;
}

.category-article-card:hover {
  border-color: #000000;
}

.category-article-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #f5f5f5;
}

.category-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.category-article-card:hover .category-article-image img {
  filter: grayscale(0%);
}

.category-article-content {
  display: flex;
  flex-direction: column;
}

.article-meta-small {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.8rem;
  color: #999999;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.category-article-content h2 {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.category-article-content h2 a {
  color: #000000;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.category-article-content h2 a:hover {
  opacity: 0.5;
}

.category-article-content p {
  color: #666666;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 25px;
  flex-grow: 1;
}

.article-link {
  display: inline-block;
  color: #000000;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid #000000;
  padding-bottom: 2px;
  transition: opacity 0.3s ease;
  align-self: flex-start;
}

.article-link:hover {
  opacity: 0.5;
}

.empty-state-box {
  text-align: center;
  padding: 100px 40px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
}

.empty-state-box h3 {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 1px;
  color: #000000;
  margin-bottom: 15px;
}

.empty-state-box p {
  color: #999999;
  font-weight: 300;
  margin-bottom: 30px;
}

.back-link {
  display: inline-block;
  color: #000000;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-bottom: 1px solid #000000;
  padding-bottom: 2px;
  transition: opacity 0.3s ease;
}

.back-link:hover {
  opacity: 0.5;
}

.pagination-prev,
.pagination-next {
  font-weight: 300 !important;
  letter-spacing: 0.5px !important;
}

.pagination-ellipsis {
  padding: 12px 20px;
  color: #999999;
  font-weight: 300;
}

@media (max-width: 768px) {
  .category-article-card {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 25px;
  }

  .category-article-image {
    height: 200px;
  }

  .category-hero h1 {
    font-size: 2rem;
  }
}

.pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 60px;
}

.pagination a {
  padding: 12px 20px;
  border: 1px solid #e5e5e5;
  text-decoration: none;
  color: #000000;
  font-weight: 300;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.pagination a:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.pagination a.active {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: #999999;
  font-weight: 300;
}

.site-footer {
  background: #000000;
  color: #ffffff;
  padding: 80px 0 30px;
  margin-top: 100px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
  margin-bottom: 50px;
}

.footer-section h3 {
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-section p {
  color: #999999;
  line-height: 1.8;
  font-weight: 300;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: #999999;
  text-decoration: none;
  display: block;
  padding: 8px 0;
  font-weight: 300;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333333;
  color: #666666;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.error-page {
  text-align: center;
  padding: 120px 20px;
}

.error-page h1 {
  font-size: 3rem;
  font-weight: 200;
  color: #000000;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: opacity 0.3s ease;
}

.btn:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 25px;
    padding: 20px 0;
  }

  .logo a {
    font-size: 1.2rem;
    gap: 10px;
  }

  .logo-icon {
    height: 35px;
  }

  .main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hero-banner {
    height: auto;
    min-height: auto;
    padding: 20px 0 15px 0;
  }
  
  .category-hero {
    height: 300px;
    min-height: 300px;
  }

  .hero-banner h1,
  .category-hero h1 {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .hero-banner p,
  .category-hero p {
    font-size: 1rem;
  }

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

  .article-item {
    flex-direction: column;
    gap: 20px;
  }

  .article-thumbnail {
    width: 100%;
    height: 250px;
  }

  .article-container {
    padding: 0 25px;
  }

  .article-page-header h1 {
    font-size: 2rem;
  }

  .article-excerpt {
    font-size: 1.05rem;
  }

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

  section h2 {
    font-size: 1.5rem;
  }
}


/* Floating Contact Button */
.contact-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #000000;
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

.contact-fab:hover {
  background: #333333;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.contact-fab svg {
  width: 24px;
  height: 24px;
}

/* Contact Modal Overlay */
.contact-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-modal-overlay.active {
  display: flex;
  opacity: 1;
}

/* Contact Modal */
.contact-modal {
  background: #ffffff;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 50px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.contact-modal-overlay.active .contact-modal {
  transform: translateY(0);
}

.contact-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: 1px solid #e5e5e5;
  background: #ffffff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-modal-close:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.contact-modal h2 {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #000000;
}

.contact-modal-subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  color: #666666;
  margin-bottom: 35px;
}

.contact-form-group {
  margin-bottom: 25px;
}

.contact-form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 10px;
}

.contact-form-group input,
.contact-form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #e5e5e5;
  font-size: 1rem;
  font-weight: 300;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
  outline: none;
  border-color: #000000;
}

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

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
  color: #999999;
  font-weight: 300;
}

.contact-form-status {
  margin-bottom: 20px;
  padding: 15px;
  font-size: 0.9rem;
  font-weight: 300;
  display: none;
}

.contact-form-status.success {
  display: block;
  background: #f0fff0;
  border: 1px solid #239F40;
  color: #239F40;
}

.contact-form-status.error {
  display: block;
  background: #fff0f0;
  border: 1px solid #DA0000;
  color: #DA0000;
}

.contact-submit-btn {
  width: 100%;
  padding: 16px;
  background: #000000;
  color: #ffffff;
  border: 1px solid #000000;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-submit-btn:hover {
  background: #ffffff;
  color: #000000;
}

.contact-submit-btn:disabled {
  background: #cccccc;
  border-color: #cccccc;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .contact-fab {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  
  .contact-fab svg {
    width: 20px;
    height: 20px;
  }
  
  .contact-modal {
    padding: 35px 25px;
  }
  
  .contact-modal h2 {
    font-size: 1.5rem;
  }
}
