/* GSM-Fuji — plain hand-written CSS, no framework */
:root {
  --navy: #003366;
  --navy-light: #0066cc;
  --accent: #ffc72c;
  --green: #38a169;
  --gray: #4a5568;
  --text-dark: #2d3748;
  --bg-light: #f8fafc;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { font-size: 20px; }
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #1a202c;
  line-height: 1.6;
  font-size: 1.125rem;
}
p { text-align: center; }
h1, h2, h3 { text-align: center; }
.content-side h2, .flex-col h2, .contact-form-card h2 { text-align: left; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.home-wrap { margin: 0 15% 50px; padding: 0; }
a { color: var(--navy-light); text-decoration: none; }
a:hover { text-decoration: underline; }

.header-top { background: var(--navy); color: var(--white); text-align: center; padding: 10px 0; font-size: 0.9rem; }
.header-top a { color: var(--accent); font-weight: 700; }

.site-header { background: var(--white); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.header-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; max-width: 1600px; margin: 0 auto; padding: 20px; flex-wrap: nowrap; }
.logo { display: flex; align-items: center; gap: 15px; }
.logo img { width: 120px; height: 120px; border-radius: 50%; }
.logo span { display: flex; flex-direction: column; }
.logo .company-name { font-size: 2.8rem; font-weight: 700; color: var(--navy); line-height: 1.1; }
.logo small { font-size: 1.44rem; color: var(--navy-light); font-weight: 600; }

.site-header nav { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; flex-shrink: 0; }
.site-header nav a { color: var(--text-dark); display: inline-block; padding: 10px 10px; font-size: 1.04rem; font-weight: 500; white-space: nowrap; }
.site-header nav a:hover { color: var(--navy-light); text-decoration: none; }
.site-header nav details { display: inline-block; position: relative; vertical-align: top; }
.site-header nav summary { cursor: pointer; padding: 10px 10px; font-size: 1.04rem; font-weight: 500; color: var(--text-dark); list-style: none; white-space: nowrap; }
.site-header nav summary::-webkit-details-marker { display: none; }
.site-header nav summary:hover, .site-header nav details[open] summary { color: var(--navy-light); }
.site-header nav .nav-dropdown-menu { position: absolute; top: 100%; left: 0; background: var(--white); box-shadow: 0 8px 20px rgba(0,0,0,0.15); border-radius: 8px; min-width: 220px; z-index: 10; padding: 8px 0; }
.site-header nav .nav-dropdown-menu a { display: block; padding: 10px 16px; color: var(--text-dark); }
.site-header nav .nav-dropdown-menu a:hover { background: var(--bg-light); color: var(--navy-light); }
.site-header nav .emergency-btn { background: #e53e3e; color: var(--white) !important; font-weight: 600; padding: 10px 20px; border-radius: 25px; margin-left: 8px; }
.site-header nav .emergency-btn:hover { text-decoration: none; opacity: 0.9; }

.hero { background: var(--bg-light); padding: 90px 40px; margin: 0 15%; text-align: center; }
.hero h1 { font-size: 3rem; line-height: 1.15; color: var(--navy); margin-bottom: 10px; }
.hero p { font-size: 1.4rem; line-height: 1.4; color: var(--gray); max-width: 700px; margin: 0 auto 24px; }

.hero-photo { background-size: cover; background-position: center; color: var(--white); padding: 225px 40px 120px; margin: 0 15% 50px; text-align: center; }
.hero-photo h1 { color: var(--white); font-size: 3.2rem; line-height: 1.15; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
.hero-photo p { color: var(--white); font-size: 1.5rem; line-height: 1.4; max-width: 850px; margin: 0 auto 24px; opacity: 0.95; }
.hero-photo .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-photo .btn-outline { border-color: var(--white); color: var(--white); }
.hero-photo .btn-outline:hover { background: var(--white); color: var(--navy); }

.intro-text { text-align: center; max-width: 900px; margin: 0 auto 50px; }
.intro-text h2 { color: var(--navy); font-size: 2rem; margin-bottom: 20px; }
.intro-text p { font-size: 1.15rem; color: var(--text-dark); line-height: 1.8; }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 36px; margin-bottom: 50px; }
.stat-card { background: var(--bg-light); padding: 32px; border-radius: 15px; text-align: center; border-bottom: 5px solid var(--accent); box-shadow: 0 8px 15px rgba(0,0,0,0.08); }
.stat-card h3 { font-size: 2.6rem; color: var(--navy); margin-bottom: 8px; font-weight: 800; }
.stat-card p { font-weight: 700; color: var(--navy-light); text-transform: uppercase; font-size: 0.9rem; }

.flex-row { display: flex; gap: 40px; flex-wrap: wrap; align-items: stretch; margin-bottom: 50px; }
.flex-col { flex: 1; min-width: 320px; }
.flex-col h2 { color: var(--navy); font-size: 1.8rem; }

.fuji-box { background: var(--navy); color: var(--white); padding: 40px; border-radius: 15px; text-align: center; box-shadow: -10px 0 25px rgba(0,0,0,0.35), 10px 0 25px rgba(0,0,0,0.08); }
.fuji-box h2 { color: var(--accent); margin-bottom: 15px; font-size: 1.8rem; }
.fuji-box p { margin-bottom: 20px; line-height: 1.8; }
.fuji-btn { display: inline-block; background: var(--accent); color: var(--navy); padding: 12px 30px; border-radius: 25px; font-weight: 700; }
.fuji-btn:hover { text-decoration: none; opacity: 0.9; }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-bottom: 50px; }
.mv-card { background: var(--bg-light); padding: 32px; border-radius: 15px; border-left: 5px solid var(--navy-light); }
.mv-card h3 { color: var(--navy); margin-bottom: 12px; font-size: 1.5rem; }
.mv-card p { color: var(--gray); line-height: 1.8; }

.compliance { background: var(--navy); color: var(--white); padding: 40px; border-radius: 20px; display: flex; align-items: center; gap: 30px; box-shadow: -10px 0 25px rgba(0,0,0,0.35), 10px 0 25px rgba(0,0,0,0.08); margin-bottom: 50px; }
.comp-icon { font-size: 3.5rem; color: var(--accent); flex-shrink: 0; }
.compliance h2 { color: var(--accent); margin-bottom: 8px; font-size: 1.6rem; text-align: left; }
.compliance p { line-height: 1.8; margin: 0; text-align: left; }

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

/* Environmental Policy: commitment cards */
.commitment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; margin-bottom: 50px; }
.commitment-box { background: var(--white); border-radius: 10px; padding: 28px; border-left: 5px solid var(--green); box-shadow: -6px 0 16px rgba(56,161,105,0.25), 0 4px 12px rgba(0,0,0,0.06); }
.commitment-icon { font-size: 2.5rem; margin-bottom: 12px; }
.commitment-box h3 { color: var(--navy); margin-top: 0; }
.commitment-box p { color: var(--gray); text-align: left; }
@media (max-width: 900px) { .commitment-grid { grid-template-columns: 1fr; } }

/* Policy cards: yellow underline title + checkmark lists */
.policy-card { background: var(--white); border: 1px solid #e2e8f0; border-radius: 15px; padding: 40px; box-shadow: 0 8px 20px rgba(0,0,0,0.08); margin-bottom: 50px; }
.policy-card h2 { color: var(--navy); display: inline-block; }
.policy-card .section-title-block { text-align: center; margin-bottom: 24px; }
.policy-card .section-title-block h2::after { content: ''; width: 100%; height: 4px; background: var(--accent); display: block; margin: 12px auto 0; }

/* Certifications card */
.cert-policy-card { background: var(--navy); color: var(--white); border-radius: 15px; padding: 40px; text-align: center; box-shadow: -10px 0 25px rgba(0,0,0,0.35), 10px 0 25px rgba(0,0,0,0.08); margin-bottom: 50px; }
.cert-policy-card h2 { color: var(--accent); }
.cert-policy-card p { color: rgba(255,255,255,0.9); max-width: 800px; margin: 0 auto 24px; }
.cert-policy-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.cert-policy-badges .cert-policy-badge { width: 140px; height: 140px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--navy); font-weight: 700; font-size: 1.1rem; text-align: center; padding: 8px; }

.btn { display: inline-block; background: var(--accent); color: var(--navy); font-weight: 700; padding: 12px 28px; border-radius: 50px; margin: 6px; font-size: 1.05rem; }
.btn:hover { text-decoration: none; opacity: 0.9; }
.btn-outline { background: transparent; border: 2px solid var(--navy); color: var(--navy); }

section { padding: 48px 0; }
section h2 { color: var(--navy); font-size: 1.8rem; margin-bottom: 20px; }

.grid { display: grid; gap: 36px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-bottom: 50px; }
.card { background: var(--white); border: 1px solid #e2e8f0; border-bottom: 5px solid var(--accent); border-radius: 6px; padding: 24px; box-shadow: 0 8px 15px rgba(0,0,0,0.08); }
.card h3 { color: var(--navy); margin-top: 0; }
.card ul { padding-left: 18px; color: var(--gray); }
.card.card-tint { background: #e6f2ff; }

/* Certification badges */
.cert-bar { background: var(--white); padding: 24px 0; border-bottom: 3px solid var(--accent); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.cert-bar .cert-badges-container { display: flex; align-items: flex-start; justify-content: center; gap: 60px; flex-wrap: wrap; }
.cert-bar .cert-badge-large { max-width: 180px; text-align: center; }
.cert-bar .badge-img { height: 100px; width: auto; max-width: 150px; object-fit: contain; margin-bottom: 10px; }
.cert-bar .cert-badge-text { font-size: 1.3rem; font-weight: 700; color: var(--navy); }
.cert-bar .cert-badge-subtext { font-size: 0.9rem; color: var(--gray); }

#portmap, #address-map { border-radius: 15px; margin: 20px 0; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* Hero slider */
.hero-slider { position: relative; width: 70%; margin: 0 auto 50px; }
.hero-slider .swiper-slide { height: 960px; display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; background-color: var(--navy); position: relative; }
.hero-slider .slide-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,51,102,0.35), rgba(0,102,204,0.45)); display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-slider .slide-content { max-width: 900px; padding: 20px; color: var(--white); }
.hero-slider .slide-content h1 { color: var(--white); font-size: 3.2rem; line-height: 1.15; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
.hero-slider .slide-content p { font-size: 1.5rem; line-height: 1.4; opacity: 0.95; margin-bottom: 30px; }
.hero-slider img.hero-logo { width: 180px; margin: 0 auto 20px; display: block; filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3)); }
.hero-slider .swiper-pagination-bullet { background: var(--white); opacity: 0.6; }
.hero-slider .swiper-pagination-bullet-active { opacity: 1; background: var(--accent); }
.hero-slider .swiper-button-prev, .hero-slider .swiper-button-next { color: var(--white); }
.hero-slider .cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.hero-slider .btn { border-radius: 50px; padding: 15px 40px; }
.hero-slider .btn-outline { border-color: var(--white); color: var(--white); }
.hero-slider .btn-outline:hover { background: var(--white); color: var(--navy); }

/* Experience banner: 70 + 35 = 100 */
.experience-banner { background: linear-gradient(135deg, var(--accent) 0%, #ffdd57 100%); padding: 48px 40px; margin: 0 15% 50px; border-radius: 20px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.experience-numbers { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; margin-bottom: 24px; }
.experience-stat-number { font-size: 4rem; font-weight: 800; color: var(--navy); line-height: 1; }
.experience-stat-label { font-size: 1rem; color: var(--navy); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.experience-text { max-width: 800px; margin: 0 auto 20px; font-size: 1.5rem; color: var(--navy); }
.experience-highlight { font-size: 2.5rem; font-weight: 800; letter-spacing: 2px; margin-bottom: 8px; color: var(--navy); text-transform: uppercase; }
.experience-subtext { color: var(--navy); font-size: 1.2rem; font-weight: 800; }

/* Motto section */
.motto-section { background: var(--navy); padding: 60px 40px; margin: 0 15% 50px; border-radius: 20px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.motto-goal { font-size: 2.5rem; font-weight: 800; color: var(--white); letter-spacing: 2px; margin: 0 0 15px; }
.motto-divider { width: 80px; height: 4px; background: var(--accent); margin: 0 auto 20px; border-radius: 2px; }
.motto-values { color: var(--white); font-weight: 600; letter-spacing: 4px; text-transform: uppercase; font-size: 1.2rem; margin: 0; }

/* Alliance section */
.alliance-card { background: var(--accent); color: var(--white); border-radius: 15px; padding: 50px; text-align: center; }
.alliance-card h2 { color: var(--navy); font-size: 2.4rem; }
.alliance-card p { max-width: 900px; margin: 0 auto 24px; font-size: 1.15rem; line-height: 1.8; color: rgba(255,255,255,0.9); }
.alliance-card .btn-outline { background: var(--navy); color: var(--white); border: none; }

/* Port coverage */
.section-title-block h2 { display: inline-block; }
.section-title-block h2::after { content: ''; width: 100%; height: 4px; background: var(--accent); display: block; margin: 15px auto 0; }
.port-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 15px; }
.port-list a { background: var(--bg-light); border-left: 4px solid var(--navy-light); border-radius: 10px; padding: 14px 16px; display: block; color: var(--navy); font-weight: 600; }
.port-list a:hover { text-decoration: none; border-left-color: var(--accent); transform: translateY(-3px); }

/* Services */
.services-section { background: var(--bg-light); padding: 80px 0; }
.services-grid { display: grid; gap: 30px; grid-template-columns: repeat(2, 1fr); }
.service-card { background: var(--white); padding: 40px 24px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); text-align: center; border-top: 4px solid var(--navy-light); }
.service-card h3 { font-size: 1.5rem; color: var(--navy); }
.service-card p { color: var(--gray); }

.service-slider {
  width: 150px; height: 150px; margin: 0 auto 20px; position: relative; border-radius: 50%;
  background: var(--white);
  border: 8px solid var(--navy);
  box-shadow: 0 0 0 3px var(--white), 0 0 0 6px var(--navy-light), inset 0 2px 6px rgba(0,0,0,0.4), 0 6px 14px rgba(0,0,0,0.3);
  overflow: hidden;
}
.service-slider img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.service-slider img.active { opacity: 1; }

/* Checkmark feature lists */
ul.feature-list { list-style: none; padding-left: 0; text-align: left; }
ul.feature-list li { padding-left: 24px; position: relative; margin-bottom: 6px; color: var(--gray); }
ul.feature-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* Person/team photo cards: consistent crop, no distortion */
.person-photo { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 4px; margin-bottom: 12px; display: block; }

/* Quick contact banner */
.quick-contact { background: linear-gradient(135deg, var(--navy-light), var(--navy)); color: var(--white); padding: 60px 0; }
.quick-contact-content { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.quick-contact h3 { margin-bottom: 6px; color: var(--white); }
.quick-contact a { color: var(--accent); font-weight: 700; }
.contact-icon { width: 60px; height: 60px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 10px; }
@media (max-width: 768px) {
  .quick-contact-content { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}

.site-footer { background: var(--text-dark); color: #cbd5e0; padding: 60px 0 20px; margin-top: 40px; }
.site-footer h3 { text-align: left; }
.site-footer p { text-align: left; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; }
.site-footer h4 { color: var(--accent); margin-top: 0; text-align: left; }
.footer-cert-badges { display: flex; gap: 15px; margin-top: 16px; }
.footer-cert-badges .footer-cert-badge { width: 72px; height: 72px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--navy); font-weight: 700; font-size: 1rem; }
.site-footer a { color: #cbd5e0; display: block; margin-bottom: 6px; text-align: left; }
.copyright { border-top: 1px solid rgba(255,255,255,0.15); margin-top: 24px; padding-top: 16px; font-size: 0.85rem; }

/* Services page: alternating flex blocks */
.service-block { padding: 60px 0; border-bottom: 1px solid #edf2f7; }
.service-block:nth-child(even) { background: var(--bg-light); }
.flex-layout { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; }
.content-side { flex: 1; min-width: 320px; }
.content-side p, .content-side li { text-align: left; }
.image-side { flex: 1; min-width: 320px; }
.image-side img { width: 100%; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-bottom: 5px solid var(--accent); display: block; }
.photo-credit { font-size: 0.75rem; color: var(--gray); text-align: right; margin-top: 6px; }

/* Contact page layout */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 30px; }
.contact-info .contact-item { display: flex; align-items: flex-start; gap: 20px; text-align: left; }
.contact-info .contact-icon { background: var(--navy-light); color: var(--white); box-shadow: 0 4px 15px rgba(0,102,204,0.2); margin: 0; flex-shrink: 0; }
.contact-details h3 { color: var(--navy); font-size: 1.3rem; margin: 0 0 6px; }
.contact-details p { color: var(--gray); text-align: left; margin: 0; }

.contact-form-card { background: var(--bg-light); padding: 40px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-top: 4px solid var(--navy-light); }
.contact-form-card h2 { text-align: left; }
.form-group { margin-bottom: 18px; text-align: left; }
.form-group label { display: block; margin-bottom: 8px; color: var(--text-dark); font-weight: 600; font-size: 0.95rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; border: 2px solid #e2e8f0; border-radius: 8px; font-size: 1rem; font-family: inherit; background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--navy-light); box-shadow: 0 0 0 3px rgba(0,102,204,0.1); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.checkbox-group { display: flex; align-items: center; gap: 12px; margin: 20px 0; padding: 15px; background: #fff3cd; border-left: 4px solid #e53e3e; border-radius: 8px; text-align: left; }
.checkbox-group input[type="checkbox"] { width: 20px; height: 20px; flex-shrink: 0; }
.checkbox-group .emergency-icon { background: #e53e3e; color: var(--white); width: 28px; height: 28px; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.checkbox-group label { color: var(--text-dark); font-weight: 600; margin: 0; }

.submit-btn { background: var(--accent); color: var(--navy); padding: 16px 40px; border: none; border-radius: 50px; font-size: 1.1rem; font-weight: 700; cursor: pointer; width: 100%; box-shadow: 0 4px 15px rgba(255,199,44,0.3); }
.submit-btn:hover { opacity: 0.9; }

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
