/* styles.css */
.navbar {
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #e5e7eb;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
}

.navbar-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar-brand {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    text-decoration: none;
}

.navbar-links {
    display: flex;
    gap: 1.5rem;
}

.navbar-link {
    color: #374151;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s;
}

.navbar-link:hover {
    color: #111827;
}

@media (max-width: 768px) {
    .navbar-links {
        display: none;
    }
}

/* Hide links and show hamburger on mobile */
@media (max-width: 768px) {
    .navbar-links {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        z-index: 1000;
    }
    .navbar-links.active {
        display: flex;
    }
    .navbar-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }
    .navbar-toggle-icon {
        /*width: 30px;*/
        /*height: 3px;*/
        /*background: #333;*/
        /*display: block;*/
        /*margin: 6px 0;*/
        /*border-radius: 2px;*/
        /*box-shadow: 0 2px #333, 0 4px #333;*/
    }
}
@media (min-width: 769px) {
    .navbar-toggle {
        display: none;
    }
}


.footer-section {
  background: #0f172a;
  color: #fff;
  padding: 3rem 0;
}
.footer-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #fde047;
  margin-bottom: 1rem;
}
.footer-desc {
  color: #cbd5e1;
  line-height: 1.7;
}
.footer-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-socials {
  display: flex;
  gap: 1rem;
}
.footer-social-link {
  color: #cbd5e1;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.footer-social-link:hover {
  color: #fde047;
}
.footer-icon {
  width: 1.5rem;
  height: 1.5rem;
}
.footer-separator {
  height: 1px;
  background: #334155;
  margin-bottom: 2rem;
}
.footer-copyright {
  text-align: center;
  color: #94a3b8;
  font-size: 0.95rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    background: #f8fafc;
    color: #1e293b;
}

.app-layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.wcn-hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 1rem;
}

.wcn-hero-container {
    max-width: 72rem;
    margin: 0 auto;
    text-align: center;
}

.wcn-hero-img-wrapper {
    width: 100%;
    margin: 0 auto;
}

.wcn-hero-img {
    width: 25%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.wcn-features-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #f1f5f9 0%, #fff 100%);
}

.wcn-features-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.wcn-features-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 1rem;
}

.wcn-features-desc {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 48rem;
    margin: 0 auto 2rem auto;
}

.wcn-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

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

/* Desktop */
@media (min-width: 1024px) {
    .wcn-features-title {
        font-size: 2.25rem;
    }
    .wcn-features-desc {
        max-width: 48rem;
    }
    .wcn-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        margin-bottom: 4rem;
    }
    .wcn-features-header {
        margin-bottom: 3rem;
    }
}
.wcn-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(30, 41, 59, 0.10);
    transition: box-shadow 0.2s;
    padding: 2rem 1.5rem;
}

.wcn-card:hover {
    box-shadow: 0 12px 40px rgba(30, 41, 59, 0.18);
}

.wcn-card-header {
    text-align: center;
    margin-bottom: 1rem;
}

.wcn-icon {
    font-size: 3rem;
    display: block;
    margin: 0 auto 1rem auto;
}

.wcn-icon-blue {
    color: #2563eb;
}

.wcn-icon-green {
    color: #16a34a;
}

.wcn-icon-red {
    color: #dc2626;
}

.wcn-card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0;
    color: #1e293b;
}

.wcn-card-content {
    text-align: center;
}

.wcn-card-desc {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
}

.wcn-cta-section {
    padding: 4rem 0;
    background: #fff;
}

.wcn-cta-container {
    max-width: 48rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.wcn-cta-title {
    font-size: 2rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 2rem;
}

.wcn-cta-desc {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.wcn-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(to right, #facc15, #fb923c);
    color: #1e293b;
    font-weight: 600;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(251, 146, 60, 0.10);
    transform: scale(1);
}

.wcn-cta-btn:hover {
    background: linear-gradient(to right, #fde047, #f97316);
    transform: scale(1.05);
}

.wcn-cta-btn-icon {
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

.footer-location {
  text-align: center;
  color: #fde047;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.footer-extra {
  text-align: center;
  margin: 0.5rem 0;
}
.footer-extra a {
  color: #fde047;
  text-decoration: underline;
  font-weight: 500;
}
