/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(27,42,78,0.1);
  z-index: 1000;
  height: 60px;
}

.navbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-logo {
  height: 40px;
  width: auto;
}

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

.navbar-link {
  color: #2F3640;
  font-size: 0.9rem;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.navbar-link:hover,
.navbar-link.active {
  color: #3B82F6;
  border-bottom-color: #3B82F6;
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.navbar-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #1B2A4E;
  margin: 5px 0;
}

/* PAGE HEADER */
.page-header {
  background: linear-gradient(135deg, #1B2A4E 0%, #2D4373 100%);
  color: #FFFFFF;
  padding: 3rem 1.25rem;
  text-align: center;
}

.page-header h1 {
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: rgba(255,255,255,0.9);
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #1B2A4E 0%, #2D4373 100%);
  padding: 4rem 1.25rem;
  text-align: center;
  color: #FFFFFF;
}

.hero h1 {
  margin-bottom: 0.5rem;
  font-size: 2.25rem;
  color: #FFFFFF;
}

.hero-subtitle {
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.hero-spec {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-style: italic;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* SERVICES LIST */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.service-tag {
  background-color: #FFFFFF;
  color: #1B2A4E;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(27,42,78,0.1);
  border-left: 4px solid #3B82F6;
  transition: all 0.3s ease;
}

.service-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27,42,78,0.15);
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.service-item {
  background-color: #FFFFFF;
  color: #1B2A4E;
  padding: 1.25rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(27,42,78,0.1);
  border-top: 3px solid #3B82F6;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(27,42,78,0.15);
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid #3B82F6;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: #3B82F6;
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: #2563EB;
  border-color: #2563EB;
}

.btn-secondary {
  background-color: transparent;
  color: #3B82F6;
}

.btn-secondary:hover {
  background-color: #3B82F6;
  color: #FFFFFF;
}

.btn-white {
  background-color: #FFFFFF;
  color: #1B2A4E;
  border-color: #FFFFFF;
}

.btn-white:hover {
  background-color: #F5F7FA;
  border-color: #F5F7FA;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

/* CARDS */
.card {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(27,42,78,0.1);
  border-left: 4px solid #3B82F6;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 25px rgba(27,42,78,0.15);
  transform: translateY(-2px);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #EFF6FF;
  border-radius: 8px;
}

.card-title {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: #1B2A4E;
}

.card-text {
  color: #2F3640;
  font-size: 0.9rem;
}

/* HIGHLIGHT BOX */
.highlight-box {
  background-color: #FFFFFF;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  border-top: 4px solid #3B82F6;
  box-shadow: 0 4px 15px rgba(27,42,78,0.1);
  transition: all 0.3s ease;
}

.highlight-box:hover {
  box-shadow: 0 8px 25px rgba(27,42,78,0.15);
  transform: translateY(-2px);
}

.highlight-box small {
  color: #3B82F6;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.highlight-box strong {
  display: block;
  color: #1B2A4E;
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

/* SECTORS */
.sector {
  text-align: center;
  padding: 1.5rem 1rem;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(27,42,78,0.08);
  transition: all 0.3s ease;
}

.sector:hover {
  box-shadow: 0 8px 25px rgba(27,42,78,0.12);
  transform: translateY(-2px);
}

.sector-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #1B2A4E 0%, #2D4373 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1.5rem;
}

.sector span {
  font-weight: 600;
  font-size: 0.9rem;
  color: #1B2A4E;
}

/* PREVIEW CARDS */
.preview-card {
  background-color: #FFFFFF;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #3B82F6;
  box-shadow: 0 4px 15px rgba(27,42,78,0.1);
  transition: all 0.3s ease;
}

.preview-card:hover {
  box-shadow: 0 8px 25px rgba(27,42,78,0.15);
  transform: translateY(-2px);
}

.preview-card small {
  color: #3B82F6;
  font-size: 0.8rem;
  font-weight: 600;
}

.preview-card h4 {
  margin: 0.25rem 0;
  font-size: 1rem;
  color: #1B2A4E;
}

.preview-card p {
  font-size: 0.875rem;
  color: #6B7280;
  margin-bottom: 0.75rem;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, #1B2A4E 0%, #2D4373 100%);
  padding: 3rem 1.25rem;
  text-align: center;
  color: #FFFFFF;
}

.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
}

/* TIMELINE */
.timeline {
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid #3B82F6;
}

.timeline-item {
  padding-bottom: 1.5rem;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.5rem;
  top: 0.25rem;
  width: 14px;
  height: 14px;
  background-color: #3B82F6;
  border-radius: 50%;
  margin-left: -5.5px;
  border: 3px solid #FFFFFF;
  box-shadow: 0 0 0 2px #3B82F6;
}

.timeline-date {
  display: inline-block;
  background-color: #1B2A4E;
  color: #FFFFFF;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-item h4 {
  margin-bottom: 0.25rem;
  color: #1B2A4E;
}

.timeline-item p {
  font-size: 0.9rem;
  color: #6B7280;
}

/* TABLES */
.table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(27,42,78,0.1);
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #FFFFFF;
  font-size: 0.9rem;
}

th {
  background: linear-gradient(135deg, #1B2A4E 0%, #2D4373 100%);
  color: #FFFFFF;
  text-align: left;
  padding: 0.875rem 1rem;
  font-weight: 600;
}

td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid #F5F7FA;
}

tr:nth-child(even) {
  background-color: #F5F7FA;
}

tr:hover {
  background-color: #EFF6FF;
}

/* COMPETENCE ITEMS */
.comp-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem;
  background-color: #FFFFFF;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  border-left: 3px solid #3B82F6;
  box-shadow: 0 2px 8px rgba(27,42,78,0.06);
}

.comp-item span:first-child {
  color: #3B82F6;
  font-size: 1.1rem;
}

.comp-item span:last-child {
  font-size: 0.9rem;
  color: #2F3640;
}

/* EXPERIENCE CARDS */
.exp-card {
  background-color: #FFFFFF;
  padding: 1.25rem;
  border-radius: 8px;
  border-left: 4px solid #3B82F6;
  box-shadow: 0 4px 15px rgba(27,42,78,0.1);
}

.exp-card p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.exp-card p:last-child {
  margin-bottom: 0;
}

.exp-card strong {
  color: #1B2A4E;
}

/* EXPERIENCE BULLETS */
.exp-bullets li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.exp-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #3B82F6;
  font-weight: bold;
}

/* EXPERIENCE GRID & CARDS */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.exp-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 4px 15px rgba(27,42,78,0.1);
  border-left: 4px solid #3B82F6;
}

.exp-field {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #2F3640;
}

.exp-field:last-child {
  margin-bottom: 0;
}

.exp-label {
  font-weight: 600;
  color: #1B2A4E;
}

@media (max-width: 900px) {
  .exp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .exp-grid {
    grid-template-columns: 1fr;
  }
}

/* TRAINING ITEMS */
.training-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  background-color: #FFFFFF;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  border-left: 3px solid #2D4373;
  box-shadow: 0 2px 6px rgba(27,42,78,0.06);
}

.training-item strong {
  color: #1B2A4E;
  min-width: 55px;
}

/* ACCORDION */
.accordion {
  border: 1px solid #F5F7FA;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 1rem;
  box-shadow: 0 2px 8px rgba(27,42,78,0.06);
}

.accordion-btn {
  width: 100%;
  padding: 1rem 1.25rem;
  background-color: #1B2A4E;
  border: none;
  text-align: left;
  cursor: pointer;
  font-weight: 600;
  color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.accordion-btn:hover {
  background-color: #2D4373;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content.open {
  max-height: 1500px;
}

.accordion-body {
  padding: 1rem;
  background-color: #FFFFFF;
}

/* PORTFOLIO */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(27,42,78,0.1);
  border-top: 3px solid #3B82F6;
}

.filter-group label {
  display: block;
  font-size: 0.75rem;
  color: #1B2A4E;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.filter-group select {
  padding: 0.5rem 0.75rem;
  border: 2px solid #F5F7FA;
  border-radius: 6px;
  font-family: inherit;
  min-width: 160px;
  background-color: #FFFFFF;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.filter-group select:focus {
  outline: none;
  border-color: #3B82F6;
}

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

.project-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(27,42,78,0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #3B82F6;
}

.project-card:hover {
  box-shadow: 0 8px 30px rgba(27,42,78,0.15);
  transform: translateY(-3px);
}

.project-img {
  height: 140px;
  background: linear-gradient(135deg, #1B2A4E 0%, #2D4373 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.project-body {
  padding: 1.25rem;
}

.project-meta {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.project-meta span {
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-weight: 600;
}

.project-meta .year {
  background-color: #3B82F6;
  color: #FFFFFF;
}

.project-meta .cat {
  background-color: #1B2A4E;
  color: #FFFFFF;
}

.project-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: #1B2A4E;
}

.project-body > p {
  font-size: 0.85rem;
  color: #6B7280;
  margin-bottom: 0.75rem;
}

.project-info {
  list-style: none;
  font-size: 0.85rem;
  padding: 0;
  margin: 0;
}

.project-info li {
  margin-bottom: 0.4rem;
  color: #2F3640;
}

.project-info li strong {
  color: #1B2A4E;
}

.project-opera {
  font-size: 0.9rem;
  color: #2F3640;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.project-details {
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.project-details li {
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.25rem;
  color: #2F3640;
}

.project-details li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #3B82F6;
  font-weight: bold;
}

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

.contact-info {
  background: linear-gradient(135deg, #1B2A4E 0%, #2D4373 100%);
  color: #FFFFFF;
  padding: 2rem;
  border-radius: 8px;
}

.contact-info h3 {
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(59,130,246,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item small {
  font-size: 0.75rem;
  opacity: 0.8;
}

.contact-item strong {
  display: block;
}

.contact-item a {
  color: #FFFFFF;
}

.contact-item a:hover {
  color: #3B82F6;
}

/* QR CODE */
.qr-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
}

.qr-section p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.9);
}

.qr-code {
  width: 150px;
  height: 150px;
  background: #FFFFFF;
  padding: 8px;
  border-radius: 8px;
}

.vcard-link {
  margin-top: 1rem;
}

.vcard-link a {
  color: #FFFFFF;
  font-size: 0.85rem;
  text-decoration: underline;
}

.vcard-link a:hover {
  color: #3B82F6;
}

/* FORM */
.form {
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(27,42,78,0.1);
  border-top: 4px solid #3B82F6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: #1B2A4E;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #F5F7FA;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

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

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

.form-btn {
  width: 100%;
}

.form-msg {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.form-msg.success {
  background-color: #d4edda;
  color: #155724;
}

.form-msg.error {
  background-color: #f8d7da;
  color: #721c24;
}

.form-msg-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.form-msg.success .form-msg-icon {
  background-color: #28a745;
  color: white;
}

.form-msg.error .form-msg-icon {
  background-color: #dc3545;
  color: white;
}

/* FOOTER */
.footer {
  background-color: #1B2A4E;
  color: #FFFFFF;
  padding: 3rem 1.25rem 1.5rem;
  margin-top: 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.footer-main {
  
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-studio-name {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.footer-text a {
  color: rgba(255,255,255,0.8);
  transition: color 0.2s ease;
}

.footer-text a:hover {
  color: #3B82F6;
}

.footer-legal {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.footer-title {
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #3B82F6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #3B82F6;
}

.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-links {
    align-items: center;
  }
  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  body {
    padding-top: 55px;
  }
  .navbar {
    height: 55px;
  }
  .navbar-menu {
    position: fixed;
    top: 55px;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .navbar-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .navbar-menu .navbar-link {
    padding: 0.75rem;
    border-bottom: 1px solid #F5F7FA;
  }
  .navbar-toggle {
    display: block;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .filters {
    flex-direction: column;
  }
  .filter-group select {
    width: 100%;
  }
}
