.service-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(21, 48, 92, 0.45);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  opacity: 0;
  padding: 1rem;
}

.service-modal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg width="800" height="600" viewBox="0 0 800 600" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 500 Q400 600 800 500 T1600 500" stroke="%23fff" stroke-width="18" fill="none" opacity="0.08"/><rect x="600" y="400" width="120" height="40" rx="20" fill="%233b82f6" opacity="0.07"/><rect x="100" y="420" width="180" height="30" rx="15" fill="%2315305c" opacity="0.06"/></svg>')
    center bottom no-repeat;
  background-size: cover;
  pointer-events: none;
  z-index: 0;
}

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

.service-modal .modal-content {
  background: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 700px;
  width: 92%;
  box-shadow: 0 8px 48px 0 rgba(21, 48, 92, 0.18);
  border: 2.5px solid #15305c;
  transform-origin: center;
  animation: modalScaleFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 90vh;
  overflow-y: auto;
  color: #15305c;
}

.service-modal.closing .modal-content {
  animation: modalScaleFadeOut 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-modal .modal-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg width="800" height="600" viewBox="0 0 800 600" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 500 Q400 600 800 500 T1600 500" stroke="%23fff" stroke-width="18" fill="none" opacity="0.08"/><rect x="600" y="400" width="120" height="40" rx="20" fill="%233b82f6" opacity="0.07"/><rect x="100" y="420" width="180" height="30" rx="15" fill="%2315305c" opacity="0.06"/></svg>')
    center bottom no-repeat;
  background-size: cover;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.service-modal .modal-content > * {
  position: relative;
  z-index: 1;
}

.service-modal .modal-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1.5px solid #e0e7ef;
  justify-content: left;
}

.service-modal .modal-icon {
  font-size: 40px;
  color: #355ea0;
  background: linear-gradient(135deg, #e0e7ff 0%, #b6d0f7 100%);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 4px 18px rgba(21, 48, 92, 0.08);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-modal .modal-title {
  font-size: 32px;
  font-weight: 600;
  color: #15305c;
  margin: 0 0 0.4rem 0;
  line-height: 1.1;
  letter-spacing: -1px;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
}

.service-modal .modal-subtitle {
  font-weight: 600;
  color: #355ea0;
  margin: 0;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
}

.service-modal .modal-body {
  color: #1e293b;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
}

.service-modal .modal-section {
  margin-bottom: 2.2rem;
}

.service-modal .modal-section:last-child {
  margin-bottom: 0;
}

.service-modal .modal-section h4 {
  font-size: 20px;
  font-weight: 600;
  color: #15305c;
  margin: 0 0 1rem 0;
  letter-spacing: 0.01em;
}

.service-modal .modal-section p {
  line-height: 1.7;
  color: #355ea0;
  margin: 0 0 1rem 0;
}

.service-modal .modal-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-modal .modal-section ul li {
  position: relative;
  padding-left: 2.2rem;
  margin-bottom: 0.85rem;
  color: #355ea0;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.6;
}

.service-modal .modal-section ul li:before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.2rem;
  width: 1.4rem;
  height: 1.4rem;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2315305c"><path d="M17 15l1.55 1.55c-.96 1.69-3.33 3.04-5.55 3.37V11h3V9h-3V7.82C14.16 7.4 15 6.3 15 5c0-1.65-1.35-3-3-3S9 3.35 9 5c0 1.3.84 2.4 2 2.82V9H8v2h3v8.92c-2.22-.33-4.59-1.68-5.55-3.37L7 15l-4-3v3c0 3.88 4.92 7 9 7s9-3.12 9-7v-3l-4 3zM12 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z"/></svg>')
    center center no-repeat;
  background-size: contain;
  content-visibility: auto;
}

.service-modal .modal-cta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-align: right;
}

.service-modal .modal-cta .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.service-modal .modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(21, 48, 92, 0.07);
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #355ea0;
  z-index: 10;
}

.service-modal .modal-close:hover {
  background: rgba(21, 48, 92, 0.15);
  color: #b80020;
  transform: rotate(90deg);
}

.services-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-100) 100%);
}

.service-block.technical {
  background: var(--white);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.service-block.technical::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(45deg, var(--light-blue) 0%, transparent 100%);
  opacity: 0.5;
}

.service-block.technical .service-content {
  position: relative;
  z-index: 2;
}

.service-block.technical .service-title {
  font-size: 40px;
  font-weight: 600;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--secondary-blue) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 3rem;
}

.service-block.technical .service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  perspective: 1000px;
}

.service-block.technical .service-card {
  background: var(--white);
  border: none;
  box-shadow: var(--shadow-md);
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-block.technical .service-card:hover {
  transform: translateY(-10px) rotateX(10deg) rotateY(10deg);
  box-shadow: var(--shadow-lg);
}

.service-block.technical .service-card i {
  color: var(--primary-blue);
  font-size: 40px;
  margin-bottom: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-block.technical .service-card:hover i {
  transform: translateZ(30px) scale(1.2);
}

.service-block.ship-owning {
  background: linear-gradient(
    135deg,
    var(--dark-blue) 0%,
    var(--primary-blue) 100%
  );
  color: var(--white);
  padding: 6rem 0;
  position: relative;
}

.service-block.ship-owning::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.service-block.ship-owning .service-title {
  color: var(--white);
  text-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
  font-size: 40px;
  margin-bottom: 3rem;
}

.service-block.ship-owning .service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.service-block.ship-owning .service-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(96, 165, 250, 0.3);
}

.service-block.ship-owning .service-card i {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}

.service-block.new-building {
  background: var(--white);
  padding: 6rem 0;
  position: relative;
}

.service-block.new-building::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--gray-100) 25%, transparent 25%),
    linear-gradient(-45deg, var(--gray-100) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--gray-100) 75%),
    linear-gradient(-45deg, transparent 75%, var(--gray-100) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  opacity: 0.5;
}

.service-block.new-building .service-title {
  color: var(--primary-blue);
  font-size: 40px;
  position: relative;
}

.service-block.new-building .service-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary-blue),
    var(--primary-blue) 10px,
    var(--secondary-blue) 10px,
    var(--secondary-blue) 20px
  );
}

.service-block.new-building .service-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  transition: all 0.4s ease;
}

.service-block.new-building .service-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-5px);
}

.service-block.new-building .feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-block.new-building .feature-item {
  background: var(--gray-100);
  padding: 1rem;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.service-block.new-building .feature-item:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateX(10px);
}

.service-block.chartering {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--dark-blue) 100%
  );
  color: var(--white);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.service-block.chartering::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.1;
  transform: rotate(45deg);
}

.service-block.chartering .service-content {
  position: relative;
  z-index: 2;
}

.service-block.chartering .service-title {
  color: var(--white);
  font-size: 40px;
  position: relative;
  display: inline-block;
}

.service-block.chartering .service-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  transform: skewX(-20deg);
}

.service-block.chartering .feature-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-block.chartering .feature-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent);
  transition: all 0.4s ease;
}

.service-block.chartering .feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(20px);
  border-left-width: 8px;
}

.service-block.chartering .feature-item i {
  color: var(--accent);
  font-size: 28px;
}

.service-content {
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.service-text {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: inherit;
  font-weight: 400;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 1.5rem;
  position: relative;
  z-index: 2;
}

.service-card {
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition-bounce);
}

.service-card h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: inherit;
}

.service-card p {
  font-weight: 500;
  color: inherit;
  opacity: 0.8;
}

.section-title {
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.services-section-2 {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-100) 100%);
}

.service-block-2.technical-2 {
  background: none !important;
}

.service-block-2.technical-2 .service-content-2 {
  position: relative;
  z-index: 2;
}

.service-block-2.technical-2 .service-title-2 {
  font-size: 40px;
  font-weight: 600;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--secondary-blue) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 3rem;
}

.service-block-2.technical-2 .service-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  perspective: 1000px;
}

.service-block-2.technical-2 .service-card-2 {
  background: var(--white);
  border: none;
  box-shadow: var(--shadow-md);
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-block-2.technical-2 .service-card-2:hover {
  transform: translateY(-10px) rotateX(10deg) rotateY(10deg);
  box-shadow: var(--shadow-lg);
}

.service-block-2.technical-2 .service-card-2 i {
  color: var(--primary-blue);
  font-size: 40px;
  margin-bottom: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-block-2.technical-2 .service-card-2:hover i {
  transform: translateZ(30px) scale(1.2);
}

.service-block-2.ship-owning-2 {
  background: none !important;
}

.service-block-2.ship-owning-2::before {
  display: none !important;
}

.service-block-2.ship-owning-2 .service-title-2 {
  color: var(--white);
  text-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
  font-size: 40px;
  margin-bottom: 3rem;
}

.service-block-2.ship-owning-2 .service-card-2 {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.service-block-2.ship-owning-2 .service-card-2:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(96, 165, 250, 0.3);
}

.service-block-2.ship-owning-2 .service-card-2 i {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}

.service-block-2.new-building-2 {
  background: none !important;
}

.service-block-2.new-building-2::before {
  display: none !important;
}

.service-block-2.new-building-2 .service-title-2 {
  color: var(--primary-blue);
  font-size: 40px;
  position: relative;
}

.service-block-2.new-building-2 .service-title-2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(
    150deg,
    var(--primary-blue),
    var(--primary-blue) 10px,
    var(--dark-red) 10px,
    var(--dark-red) 20px
  );
}

.service-block-2.new-building-2 .service-card-2 {
  background: var(--white);
  border: 2px solid var(--gray-200);
  transition: all 0.4s ease;
}

.service-block-2.new-building-2 .service-card-2:hover {
  border-color: var(--primary-blue);
  transform: translateY(-5px);
}

.service-block-2.new-building-2 .feature-list-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-block-2.new-building-2 .feature-item-2 {
  background: var(--gray-100);
  padding: 1rem;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  transform: translateX(0);
  will-change: transform;
}

.service-block-2.new-building-2 .feature-item-2:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateX(10px);
}

.service-block-2.chartering-2 {
  background: none !important;
}

.service-block-2.chartering-2::before {
  display: none !important;
}

.service-block-2.chartering-2 .service-content-2 {
  position: relative;
  z-index: 2;
}

.service-block-2.chartering-2 .service-title-2 {
  color: var(--white);
  font-size: 40px;
  position: relative;
  display: inline-block;
}

.service-block-2.chartering-2 .service-title-2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  transform: skewX(-20deg);
}

.service-block-2.chartering-2 .feature-list-2 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-block-2.chartering-2 .feature-item-2 {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent);
  transition: all 0.3s ease;
  transform: translateX(0);
  will-change: transform;
}

.service-block-2.chartering-2 .feature-item-2:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
  border-left-width: 8px;
}

.service-block-2.chartering-2 .feature-item-2 i {
  color: var(--accent);
  font-size: 28px;
}

.service-content-2 {
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.service-text-2 {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: inherit;
  font-weight: 400;
}

.service-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 1.5rem;
  position: relative;
  z-index: 2;
}

.service-card-2 {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition-bounce);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.service-card-2 h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: inherit;
}

.service-card-2 p {
  font-weight: 500;
  color: inherit;
  opacity: 0.8;
}

.section-title-2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.service-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 60px 0;
}

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

.owning-bg {
  background: #15305c;
  color: #fff;
  position: relative;
}

.owning-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.building-bg {
  background: #f7f9fa;
  position: relative;
}

.building-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    135deg,
    #e3e8ee 0 2px,
    transparent 2px 40px
  );
  opacity: 0.4;
  z-index: 0;
}

.chartering-bg {
  background: #15305c;
  color: #fff;
  position: relative;
}

.chartering-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,%3Csvg width="1920" height="200" viewBox="0 0 1920 200" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 100C320 200 640 0 960 100C1280 200 1600 0 1920 100V200H0V100Z" fill="%233b82f6" fill-opacity="0.18"/%3E%3C/svg%3E')
    bottom center repeat-x;
  background-size: cover;
  opacity: 1;
  z-index: 0;
}

.technical-bg {
  background: #f8f8f8;
  position: relative;
}

.technical-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 30 Q15 25 30 30 T60 30 V60 H0 V30Z" fill="%233b82f6" fill-opacity="0.03"/%3E%3C/svg%3E');
  background-size: 60px 60px;
  opacity: 1;
  z-index: 0;
}

.service-section .container,
.service-section .service-block-2 {
  position: relative;
  z-index: 1;
}

.sea-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sea-bullets li {
  position: relative;
  padding-left: 2.2rem;
  margin-bottom: 0.85rem;
  color: #2563eb;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.6;
}

.sea-bullets li:before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.2rem;
  width: 1.4rem;
  height: 1.4rem;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M17 15l1.55 1.55c-.96 1.69-3.33 3.04-5.55 3.37V11h3V9h-3V7.82C14.16 7.4 15 6.3 15 5c0-1.65-1.35-3-3-3S9 3.35 9 5c0 1.3.84 2.4 2 2.82V9H8v2h3v8.92c-2.22-.33-4.59-1.68-5.55-3.37L7 15l-4-3v3c0 3.88 4.92 7 9 7s9-3.12 9-7v-3l-4 3zM12 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z"/></svg>')
    center center no-repeat;
  background-size: contain;
  content-visibility: auto;
}

.modal-animate {
  animation: modalScaleFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalScaleFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes modalScaleFadeOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
}

@media (max-width: 991px) {
  .service-block {
    padding: 4rem 0;
  }

  .service-content {
    padding: 1.5rem;
    margin-bottom: 3rem;
  }

  .service-title {
    font-size: 40px;
  }

  .service-grid {
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem;
  }

  .service-block-2 {
    padding: 4rem 0;
  }

  .service-content-2 {
    padding: 1.5rem;
    margin-bottom: 3rem;
  }

  .service-title-2 {
    font-size: 40px;
  }

  .service-grid-2 {
    gap: 1.5rem;
  }

  .service-card-2 {
    padding: 2rem;
  }
}

@media (max-width: 767px) {
  .services-section {
    padding: 5rem 0;
  }

  .service-block {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 40px;
  }

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

  .service-title {
    font-size: 32px;
  }

  .service-block.new-building .feature-list {
    grid-template-columns: 1fr;
  }

  .services-section-2 {
    padding: 5rem 0;
  }

  .service-block-2 {
    padding: 3rem 0;
  }

  .section-title-2 {
    font-size: 40px;
  }

  .service-grid-2 {
    gap: 1rem;
  }

  .service-card-2 {
    padding: 1.5rem;
  }

  .service-card-2 h4 {
    font-size: 20px;
  }

  .service-block-2.new-building-2 .feature-item-2,
  .service-block-2.chartering-2 .feature-item-2 {
    transform: none !important;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .service-block-2.new-building-2 .feature-item-2:hover,
  .service-block-2.chartering-2 .feature-item-2:hover {
    transform: none !important;
  }
}

@media (max-width: 576px) {
  .service-grid-2 {
    gap: 0.75rem;
  }

  .service-card-2 {
    padding: 1rem;
  }

  .service-card-2 h4 {
    margin-bottom: 0.5rem;
  }

  .service-card-2 i {
    font-size: 24px;
    margin-bottom: 0.5rem;
  }

  .service-text-2 {
    font-size: 16px;
    margin-bottom: 1rem;
  }

  .service-block-2.ship-owning-2 .service-title-2 {
    margin-bottom: 1.5rem;
    font-size: 32px;
  }

  .service-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0;
    position: relative;
    z-index: 2;
  }

  .service-block-2.technical-2 .service-title-2 {
    font-size: 32px;
    margin-bottom: 1rem;
  }

  .service-block-2.new-building-2 .service-title-2 {
    font-size: 32px;
  }
}
