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

:root {
  --primary-color: #ff6b35;
  --secondary-color: #1e3a8a;
  --accent-color: #4ecdc4;
  --text-color: #2d3748;
  --bg-color: #f8fafc;
  --bg-secondary: #e2e8f0;
  --dark-color: #1a202c;
  --light-color: #ffffff;
}

body {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-color);
}

h1 { font-size: 3.5rem; }
h2 { font-size: calc(1.425rem + 1.1vw); }
h3 { font-size: calc(1.375rem + .8vw); }
h5 { font-size: 1.375rem; }

p {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
  opacity: 0.8;
}

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

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

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
  align-items: stretch;
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
}

.col-4 { flex: 0 0 auto; width: 33.33333333%; }
.col-md-4 { flex: 0 0 auto; width: 33.33333333%; }
.col-md-6 { flex: 0 0 auto; width: 50%; }
.col-md-8 { flex: 0 0 auto; width: 66.66666667%; }
.col-lg-4 { flex: 0 0 auto; width: 33.33333333%; }
.col-lg-5 { flex: 0 0 auto; width: 41.66666667%; }
.col-lg-6 { flex: 0 0 auto; width: 50%; }
.col-lg-8 { flex: 0 0 auto; width: 66.66666667%; }
.col-xl-7 { flex: 0 0 auto; width: 58.33333333%; }

.d-flex { display: flex !important; }
.d-inline-block { display: inline-block !important; }
.d-block { display: block !important; }

.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.align-items-center { align-items: center !important; }
.align-items-stretch { align-items: stretch !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-end { justify-content: flex-end !important; }

.text-center { text-align: center !important; }
.text-start { text-align: left !important; }
.text-end { text-align: right !important; }

.ms-auto { margin-left: auto !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 0.75rem !important; }
.me-4 { margin-right: 1rem !important; }

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-right: 2rem;
  flex-shrink: 0;
}

.navbar-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.navbar-nav .nav-item {
  margin: 0;
}

.navbar-nav .nav-link {
  color: var(--text-color);
  font-weight: 500;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

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

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
  background: transparent;
  display: none;
}

.navbar-collapse {
  display: flex !important;
  flex-basis: auto;
  align-items: center;
}

.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.8), rgba(255, 107, 53, 0.6)),
              url('../shot/jjc5n1.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.7), rgba(255, 107, 53, 0.5));
}

.hero .container {
  position: relative;
  z-index: 2;
}

.btn {
  display: inline-block;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
  user-select: none;
  border: 2px solid transparent;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), #e55a2b);
  color: white;
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #e55a2b, var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.btn-outline-light {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-outline-light:hover {
  background: white;
  color: var(--primary-color);
}

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

.bg-bg-2 {
  background-color: var(--bg-secondary);
}

.bg-bg-3 {
  background-color: var(--bg-color);
}

.bg-primary {
  background-color: var(--primary-color);
}

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

.text-white {
  color: white;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5);
}

.text-muted {
  color: #6b7280;
}

.display-3 {
  font-size: calc(1.675rem + 4.2vw);
  font-weight: 700;
  line-height: 1.15;
}

.display-4 {
  font-size: calc(1.575rem + 3.6vw);
  font-weight: 600;
  line-height: 1.15;
}

.display-5 {
  font-size: calc(1.525rem + 2.4vw);
  font-weight: 600;
  line-height: 1.15;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.fs-1 { font-size: 1.625rem; }
.fs-2 { font-size: 1.4375rem; }
.fs-4 { font-size: 1.1875rem; }

.fw-bold { font-weight: 600; }

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

.rounded { border-radius: 0.75rem; }
.rounded-circle { border-radius: 50%; }

.d-flex { display: flex; }
.d-inline-block { display: inline-block; }
.d-block { display: block; }

.flex-column { flex-direction: column; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }

.gap-3 > * + * { margin-left: 1rem; }

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-7 { margin-bottom: 1.75rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-9 { margin-bottom: 2.25rem; }
.mb-16 { margin-bottom: 4rem; }

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

.ms-auto { margin-left: auto; }

.p-4 { padding: 1rem; }
.p-7 { padding: 1.75rem; }
.p-9 { padding: 2.25rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }

.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-11 { padding-top: 3rem; padding-bottom: 3rem; }
.py-lg-21 { padding-top: 5rem; padding-bottom: 5rem; }

.min-vh-100 { min-height: 100vh; }

.h-100 { height: 100%; }
.w-100 { width: 100%; }

.opacity-90 { opacity: 0.9; }

.position-relative { position: relative; }
.position-absolute { position: absolute; }
.fixed-top { position: fixed; top: 0; left: 0; right: 0; z-index: 1030; }

.form-label {
  margin-bottom: 0.75rem;
  display: inline-block;
  font-weight: 500;
  color: var(--text-color);
}

.form-control, .form-select {
  display: block;
  width: 100%;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-color);
  background-color: white;
  border: 2px solid #e2e8f0;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.75rem;
  margin-bottom: 0.125rem;
}

.form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.25rem;
  margin-left: -1.75rem;
  vertical-align: top;
  background-color: white;
  border: 2px solid #cbd5e1;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-label {
  cursor: pointer;
  font-size: 0.9rem;
}

.contact-form-container {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-info .contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: white;
  font-size: 1.2rem;
}

.footer {
  background: linear-gradient(135deg, var(--dark-color), var(--secondary-color));
  padding: 3rem 0 2rem;
  color: white;
}

.footer h5, .footer h6 {
  color: white;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--secondary-color), var(--dark-color));
  color: white;
  padding: 1rem 0;
  z-index: 1040;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.list-unstyled {
  list-style: none;
  padding-left: 0;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.collapse:not(.show) {
  display: none;
}

@media (min-width: 768px) {
  .container {
    max-width: 750px;
  }
  
  .flex-md-row {
    flex-direction: row;
  }
  
  .text-md-end {
    text-align: right;
  }
  
  .mt-md-0 {
    margin-top: 0;
  }
  
  .mb-md-0 {
    margin-bottom: 0;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 970px;
  }
  
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  
  .navbar-expand-lg .navbar-collapse {
    display: flex;
    flex-basis: auto;
  }
  
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  
  .mb-lg-0 {
    margin-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  h1 { font-size: 4rem; }
  h2 { font-size: 2.5rem; }
  .display-3 { font-size: 4.5rem; }
  .display-4 { font-size: 3.5rem; }
  .display-5 { font-size: 3rem; }
}

@media (max-width: 767px) {
  .gap-3 {
    flex-direction: column;
  }
  
  .gap-3 > * + * {
    margin-left: 0;
    margin-top: 1rem;
  }
  
  .hero {
    padding-top: 80px;
  }
  
  .display-3 {
    font-size: 2.5rem;
  }
}

@media (min-width: 992px) {
  .col-lg-1  { flex: 0 0 auto; width: 8.333333%;  }
  .col-lg-2  { flex: 0 0 auto; width: 16.666667%; }
  .col-lg-3  { flex: 0 0 auto; width: 25%;        }
  .col-lg-4  { flex: 0 0 auto; width: 33.333333%; }
  .col-lg-5  { flex: 0 0 auto; width: 41.666667%; }
  .col-lg-6  { flex: 0 0 auto; width: 50%;        }
  .col-lg-7  { flex: 0 0 auto; width: 58.333333%; }
  .col-lg-8  { flex: 0 0 auto; width: 66.666667%; }
  .col-lg-9  { flex: 0 0 auto; width: 75%;        }
  .col-lg-10 { flex: 0 0 auto; width: 83.333333%; }
  .col-lg-11 { flex: 0 0 auto; width: 91.666667%; }
  .col-lg-12 { flex: 0 0 auto; width: 100%;       }
}
