/* ============================================
   ROOT VARIABLES
   ============================================ */
:root {
  --primary-color: #005a9c;
  --secondary-color: #343a40;
  --accent-color: #ffc107;
  --dark-color: #212529;
  --light-color: #f8f9fa;
  --white-color: #ffffff;
  --sakomoto-green: #28a745;
  --sakomoto-green-light: #20c997;
  --font-primary: "Inter", sans-serif;
  --font-secondary: "Poppins", sans-serif;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  color: var(--dark-color);
  background-color: var(--white-color);
  overflow-x: hidden;
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.2px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.section-padding {
  padding: 100px 0;
  position: relative;
}

.section-bg {
  background-color: var(--light-color);
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 20px;
  text-transform: capitalize;
}

.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 5px;
}

.section-title p {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  font-size: 0.875rem;
  font-family: var(--font-primary);
  padding: 14px 35px;
  border-radius: 8px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-premium {
  background: linear-gradient(145deg, #40a836, #5dcf78);
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 90, 156, 0.2),
              inset 0 -2px 5px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

.btn-premium:hover {
  color: var(--white-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 90, 156, 0.3);
}

.btn-premium:hover::before {
  left: 100%;
}

.btn-sakomoto-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 35px;
  background: linear-gradient(135deg, var(--sakomoto-green), var(--sakomoto-green-light));
  color: #ffffff;
  border: 2px solid var(--sakomoto-green);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-sakomoto-primary:hover {
  background: transparent;
  color: var(--sakomoto-green);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
}

/* ============================================
   SHAPE DIVIDERS
   ============================================ */
.shape-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 2;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

.shape-divider .shape-fill {
  fill: var(--light-color);
}

.shape-divider-top {
  top: -1px;
  bottom: auto;
  transform: rotate(0deg);
}

.shape-divider-top .shape-fill {
  fill: var(--white-color);
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-image: url("../images/Q.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(64, 160, 230, 0.5), rgba(6, 22, 37, 0.5));
  z-index: 0;
}

#hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 20px 24px;
  max-width: 100%;
}

.hero-content {
  animation: fadeInUp 0.8s ease;
}

.hero-badge {
  display: inline-block;
  background: rgba(40, 167, 69, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--sakomoto-green);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  border: 1px solid rgba(40, 167, 69, 0.2);
}

#hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.15;
  color: #ffffff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  min-height: 55px;
}

#typed-hero {
  color: #ffffff;
  font-weight: 800;
}

#typed-hero::first-letter {
  color: var(--sakomoto-green);
}

.typed-cursor {
  color: var(--sakomoto-green) !important;
  font-size: 2.2rem !important;
  font-weight: 300 !important;
  opacity: 1 !important;
}

.hero-subtitle {
  font-size: 0.9rem;
  margin: 0 auto 24px;
  max-width: 100%;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  padding: 0 5px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.btn-hero-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--sakomoto-green), var(--sakomoto-green-light));
  color: #ffffff;
  border: none;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 25px rgba(40, 167, 69, 0.3);
  letter-spacing: 0.3px;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(40, 167, 69, 0.4);
}

.btn-hero-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

/* ============================================
   WHY CHOOSE SAKOMOTO
   ============================================ */
.why-sakomoto {
  background-image: url("../images/image3.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  position: relative;
  min-height: auto;
}

.why-sakomoto::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(245, 245, 245, 0.92), rgba(245, 245, 245, 0.96));
  z-index: 1;
}

.why-sakomoto .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: #1a237e;
  color: #ffffff;
  padding: 8px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(26, 35, 126, 0.2);
}

.section-title {
  font-size: 1.1rem;
  line-height: 1.3;
  min-height: 2.8em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-header img {
  max-height: 120px;
  width: auto;
  object-fit: contain;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #424242;
  max-width: 800px;
  margin: 0 auto 15px;
  line-height: 1.7;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.feature-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 35px 30px;
  height: 100%;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #1a237e, #3949ab);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: #303892;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #212121;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  font-family: "Georgia", serif;
}

.feature-text {
  color: #616161;
  line-height: 1.7;
  position: relative;
  z-index: 2;
  font-size: 0.95rem;
}

/* ============================================
   IMAGE SHOWCASE (FIXED & FULLY RESPONSIVE)
   ============================================ */
.image-showcase {
    padding: 70px 0 50px;
    background: #f8f9fa;
}

.image-showcase .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.image-showcase .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 0;
}

.section-badge {
    display: inline-block;
    background: #1a2332;
    color: white;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.showcase-card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #ffffff;
    position: relative;
    cursor: pointer;
    width: 100%;
    max-width: 500px;
    
    /* BAGO: Gagamit ng aspect-ratio sa desktop para laging perfect ang shape ng card */
    aspect-ratio: 4 / 3.4; 
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Image - laging sakop ang card nang walang distortion */
.showcase-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 0;
}

/* Overlay animations sa desktop */
.showcase-card::before,
.showcase-card::after {
    content: "";
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    background: rgba(26, 35, 50, 0.5);
    position: absolute;
    transform-origin: left;
    transform: scaleX(0);
    transition: all var(--cover-timing, 0.5s) var(--cover-ease, cubic-bezier(0.66, 0.08, 0.19, 0.97));
    z-index: 1;
    pointer-events: none;
}

.showcase-card::after {
    transition-delay: var(--cover-stagger, 0.15s);
    top: 50%;
}

.showcase-card:hover::before,
.showcase-card:hover::after {
    transform: scaleX(1);
}

/* Content block */
.showcase-content {
    position: relative; /* Binago mula absolute para sumabay sa flex structure */
    width: 100%;
    padding: 40px 25px 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0) 100%);
    z-index: 2;
    color: white;
}

.showcase-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.showcase-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Split Text core properties */
.showcase-title .char,
.showcase-content p .word,
.section-title .char {
    display: inline-block;
    position: relative;
    transition-property: transform, opacity, color;
    transition-timing-function: var(--text-ease, cubic-bezier(0.38, 0.26, 0.05, 1.07));
    transition-duration: var(--text-timing, 0.75s);
}

.showcase-card:hover .showcase-title .char {
    opacity: 1;
    transform: translateY(0);
    color: #ffffff;
}

.showcase-card:hover .showcase-content p .word {
    opacity: 1;
    transform: translateY(0);
    color: rgba(255, 255, 255, 0.95);
}

.section-title .char {
    opacity: 1;
    transform: translateY(0);
    color: #1a2332;
}

.showcase-card:hover .showcase-img {
    transform: scale(1.05);
}

/* ============================================
   RESPONSIVE OPTIMIZATIONS
   ============================================ */

@media (max-width: 767px) {
    /* I-reset ang lalagyan ng cards */
    .image-showcase .row {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .showcase-card {
        position: relative !important;
        display: flex !important;
        flex-direction: column !important; /* Piliting maging vertical ang salansan */
        height: auto !important; /* ALISIN ang fixed height */
        min-height: auto !important;
        max-height: none !important;
        background: #1a2332 !important; /* Kulay ng background sa mobile */
        border-radius: 14px !important;
        overflow: hidden !important;
    }

    /* Ang Image Slot */
    .showcase-img {
        position: relative !important; /* Alisin sa pagkakaplutang sa ibabaw ng text */
        width: 100% !important;
        height: 200px !important; /* Fixed image height para sa mobile para pantay-pantay */
        background-size: contain !important; /* Para hindi maputol ang sako */
        background-repeat: no-repeat !important;
        background-position: center !important;
        background-color: #ffffff !important; /* Puting background sa likod ng sako para malinis */
        inset: auto !important;
    }

    /* Ang Text Box sa Ilalim */
    .showcase-content {
        position: relative !important;
        inset: auto !important; /* Alisin ang bottom: 0 positioning */
        width: 100% !important;
        padding: 20px !important;
        background: #1a2332 !important; /* Solid background, walang gradient */
        transform: none !important;
    }

    /* Siguraduhing litaw ang mga text elements kahit may Splitting.js */
    .showcase-title, 
    .showcase-content p,
    .showcase-title .char,
    .showcase-content p .word {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
        display: inline-block !important;
    }

    .showcase-title {
        font-size: 1.2rem !important;
        color: #ffffff !important;
        margin-bottom: 8px !important;
    }

    .showcase-content p {
        font-size: 0.85rem !important;
        color: rgba(255, 255, 255, 0.85) !important;
        line-height: 1.4 !important;
    }

    /* Patayin ang hover extensions sa mobile */
    .showcase-card::before, 
    .showcase-card::after {
        display: none !important;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 70px 0 50px;
  background: linear-gradient(135deg, #1a2332, #2c3e50);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/bgsales.jpg") center center/cover no-repeat;
  opacity: 0.06;
}

.cta-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
  color: #ffffff;
  line-height: 1.2;
}

.cta-text {
  font-size: 1.05rem;
  max-width: 750px;
  margin: 0 auto 30px;
  opacity: 0.85;
  line-height: 1.7;
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   STATISTICS SECTION
   ============================================ */
#stats {
  background: linear-gradient(rgba(0, 90, 156, 0.9), rgba(0, 90, 156, 0.9));
  /* , */
              /* url("images/b.jpeg") center center / cover no-repeat fixed;   */
  color: #ffffff;
  text-align: center;
  padding: 70px 0 50px;
  position: relative;
}

#stats .container {
  position: relative;
  z-index: 1;
}

#stats .row {
  justify-content: center;
}

.counter-box {
  padding: 20px 15px;
}

.counter-box .icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
  color: var(--accent-color);
  display: block;
}

.counter-box .counter,
.counter-box .suffix {
  font-size: 3.2rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  display: inline-block;
}

.counter-box .suffix {
  font-size: 3rem;
}

.counter-box p {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 8px;
  margin-bottom: 0;
}

/* ============================================
   NEWS TICKER
   ============================================ */
.news-ticker-container {
  background-color: #1a2332;
  color: #ffffff;
  padding: 0;
  overflow: hidden;
  border-top: 2px solid rgba(40, 167, 69, 0.2);
  border-bottom: 2px solid rgba(40, 167, 69, 0.2);
}

.ticker-wrap {
  display: flex;
  align-items: stretch;
  height: 50px;
}

.ticker-title {
  background: linear-gradient(135deg, var(--sakomoto-green), var(--sakomoto-green-light));
  padding: 12px 25px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  color: #ffffff;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ticker-title i {
  margin-right: 10px;
  font-size: 1rem;
}

.ticker-content {
  flex-grow: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.ticker-move {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 60s linear infinite;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

.ticker-move span {
  margin: 0 35px;
  display: inline-block;
}

.ticker-move span i {
  margin-right: 8px;
  color: var(--sakomoto-green);
}

@keyframes ticker {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-card {
  background: var(--white-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.blog-card .blog-img-container {
  height: 220px;
  overflow: hidden;
}

.blog-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover img {
  transform: scale(1.1);
}

.blog-card .blog-content {
  padding: 30px;
}

.blog-card .blog-meta {
  font-size: 0.85rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.blog-card .blog-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-color);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}

.blog-card .blog-title:hover {
  color: var(--primary-color);
}

.blog-card .read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.blog-card .read-more:hover {
  gap: 12px;
  color: var(--sakomoto-green);
}

/* ISO Card Special */
.iso-card .iso-img-container {
  position: relative;
}

.iso-img-container .iso-text {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  padding: 12px 20px;
  border-radius: 10px;
  text-align: center;
  border-left: 4px solid var(--sakomoto-green);
}

.iso-img-container .iso-text h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 1px;
}

.iso-img-container .iso-text p {
  color: var(--sakomoto-green);
  font-size: 0.7rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 2px;
}

.iso-certification-header {
  margin-bottom: 12px;
}

.iso-certification-header .exclusive-label {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700, #ffb700);
  color: #1a2332;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.iso-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 0;
}

.iso-description {
  color: #6c7a8a;
  line-height: 1.7;
  font-size: 0.92rem;
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-container {
  border-radius: 15px;
  overflow: hidden;
  height: 400px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  margin: 0 15px;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: var(--sakomoto-green);
  color: white;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 991.98px) {
  .section-padding {
    padding: 70px 0;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  #hero h1 {
    font-size: 3rem;
    min-height: 70px;
  }
  
  .typed-cursor {
    font-size: 3rem !important;
  }
  
  .hero-subtitle {
    font-size: 1.05rem;
    max-width: 80%;
  }
  
  .hero-buttons {
    flex-direction: row;
    max-width: 500px;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: auto;
    padding: 14px 30px;
    font-size: 0.95rem;
  }
  
  .why-sakomoto {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .feature-card {
    padding: 30px 25px;
  }
  
  .image-showcase .section-title {
    font-size: 1.9rem;
  }
  
  .showcase-img {
    height: 220px;
  }
  
  .cta-title {
    font-size: 2.1rem;
  }
  
  .cta-text {
    font-size: 1rem;
  }
  
  #stats {
    padding: 55px 0 40px;
  }
  
  .counter-box .counter,
  .counter-box .suffix {
    font-size: 2.8rem;
  }
  
  .ticker-title {
    padding: 10px 18px;
    font-size: 0.7rem;
  }
  
  .ticker-move {
    font-size: 0.8rem;
  }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 767.98px) {
  .section-padding {
    padding: 50px 0;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  #hero {
    height: 100vh !important;
    min-height: 100vh !important;
  }
  
  #hero h1 {
    font-size: 2rem;
    min-height: 50px;
  }
  
  .typed-cursor {
    font-size: 2rem !important;
  }
  
  .hero-subtitle {
    font-size: 0.85rem;
    max-width: 100%;
  }
  
  .hero-buttons {
    flex-direction: column;
    max-width: 280px;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.85rem;
  }
  
  .why-sakomoto {
    padding: 50px 0;
  }
  
  .section-header {
    margin-bottom: 30px;
  }
  
  .section-badge {
    font-size: 0.7rem;
    padding: 5px 16px;
  }
  
  .section-title {
    font-size: 0.9rem;
  }
  
  .section-header img {
    max-height: 80px;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .feature-card {
    padding: 25px 20px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .image-showcase {
    padding: 45px 0 30px;
  }
  
  .image-showcase .section-title {
    font-size: 1.6rem;
  }
  
  .showcase-img {
    height: 200px;
  }
  
  .showcase-content {
    padding: 15px 16px 18px;
  }
  
  .cta-section {
    padding: 45px 0 35px;
  }
  
  .cta-title {
    font-size: 1.7rem;
  }
  
  .cta-text {
    font-size: 0.9rem;
  }
  
  #stats {
    padding: 45px 0 30px;
    background-attachment: scroll;
  }
  
  .counter-box .counter,
  .counter-box .suffix {
    font-size: 2.4rem;
  }
  
  .counter-box p {
    font-size: 0.9rem;
  }
  
  .ticker-wrap {
    height: 42px;
  }
  
  .ticker-title {
    padding: 8px 14px;
    font-size: 0.6rem;
  }
  
  .ticker-move {
    font-size: 0.72rem;
  }
  
  .ticker-move span {
    margin: 0 18px;
  }
  
  .blog-card .blog-img-container {
    height: 180px;
  }
  
  .blog-card .blog-content {
    padding: 20px;
  }
  
  .blog-card .blog-title {
    font-size: 1rem;
  }
  
  .map-container {
    height: 300px;
    margin: 0 10px;
  }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE
   ============================================ */
@media (max-width: 575.98px) {
  .section-padding {
    padding: 40px 0;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
  }
  
  #hero h1 {
    font-size: 1.8rem;
    min-height: 42px;
  }
  
  .typed-cursor {
    font-size: 1.8rem !important;
  }
  
  .hero-subtitle {
    font-size: 0.8rem;
  }
  
  .hero-badge {
    font-size: 0.55rem;
    padding: 4px 14px;
  }
  
  .why-sakomoto {
    padding: 40px 0;
  }
  
  .section-badge {
    font-size: 0.6rem;
    padding: 4px 14px;
  }
  
  .section-title {
    font-size: 0.8rem;
  }
  
  .section-header img {
    max-height: 60px;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  .feature-card {
    padding: 20px 16px;
  }
  
  .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  .feature-title {
    font-size: 1rem;
  }
  
  .feature-text {
    font-size: 0.85rem;
  }
  
  .image-showcase {
    padding: 35px 0 20px;
  }
  
  .image-showcase .section-title {
    font-size: 1.3rem;
  }
  
  .showcase-img {
    height: 170px;
  }
  
  .showcase-content {
    padding: 12px 14px 16px;
  }
  
  .showcase-title {
    font-size: 0.95rem;
  }
  
  .cta-section {
    padding: 35px 0 25px;
  }
  
  .cta-title {
    font-size: 1.4rem;
  }
  
  .cta-text {
    font-size: 0.85rem;
  }
  
  .cta-section .btn-sakomoto-primary {
    padding: 10px 24px;
    font-size: 0.85rem;
    width: 100%;
    max-width: 240px;
    justify-content: center;
  }
  
  #stats {
    padding: 35px 0 20px;
  }
  
  #stats .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .counter-box .counter,
  .counter-box .suffix {
    font-size: 2rem;
  }
  
  .counter-box p {
    font-size: 0.85rem;
  }
  
  .ticker-wrap {
    height: 38px;
  }
  
  .ticker-title {
    padding: 6px 12px;
    font-size: 0.55rem;
  }
  
  .ticker-move {
    font-size: 0.65rem;
  }
  
  .ticker-move span {
    margin: 0 12px;
  }
  
  .blog-card .blog-img-container {
    height: 160px;
  }
  
  .blog-card .blog-content {
    padding: 16px;
  }
  
  .blog-card .blog-title {
    font-size: 0.95rem;
  }
  
  .blog-card .blog-meta {
    font-size: 0.75rem;
  }
  
  .iso-img-container .iso-text {
    bottom: 10px;
    right: 10px;
    padding: 8px 14px;
  }
  
  .iso-img-container .iso-text h4 {
    font-size: 0.9rem;
  }
  
  .iso-title {
    font-size: 1.1rem;
  }
  
  .map-container {
    height: 250px;
    margin: 0 5px;
  }
  
  #scrollTopBtn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    bottom: 15px;
    right: 15px;
  }
}

/* ============================================
   RESPONSIVE - VERY SMALL
   ============================================ */
@media (max-width: 400px) {
  #hero h1 {
    font-size: 1.5rem;
    min-height: 36px;
  }
  
  .typed-cursor {
    font-size: 1.5rem !important;
  }
  
  .hero-subtitle {
    font-size: 0.75rem;
  }
  
  .hero-badge {
    font-size: 0.5rem;
    padding: 3px 12px;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 10px 16px;
    font-size: 0.8rem;
  }
  
  .section-title h2 {
    font-size: 1.3rem;
  }
  
  .feature-card {
    padding: 16px 14px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  
  .feature-title {
    font-size: 0.9rem;
  }
  
  .feature-text {
    font-size: 0.8rem;
  }
  
  .showcase-img {
    height: 150px;
  }
  
  .showcase-content p {
    font-size: 0.8rem;
  }
  
  .cta-title {
    font-size: 1.2rem;
  }
  
  .cta-text {
    font-size: 0.8rem;
  }
  
  .counter-box .counter,
  .counter-box .suffix {
    font-size: 1.7rem;
  }
  
  .counter-box p {
    font-size: 0.8rem;
  }
  
  .ticker-wrap {
    height: 34px;
  }
  
  .ticker-title {
    padding: 4px 10px;
    font-size: 0.5rem;
  }
  
  .ticker-move {
    font-size: 0.6rem;
  }
  
  .ticker-move span {
    margin: 0 10px;
  }
}

/* ============================================
   LANDSCAPE MODE
   ============================================ */
@media (max-height: 500px) and (orientation: landscape) {
  #hero {
    height: 100vh;
    min-height: 100vh;
  }
  
  #hero h1 {
    font-size: 2rem;
    min-height: 45px;
  }
  
  .typed-cursor {
    font-size: 2rem !important;
  }
  
  .hero-subtitle {
    font-size: 0.8rem;
    max-width: 70%;
  }
  
  .hero-buttons {
    flex-direction: row;
    max-width: 450px;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: auto;
    padding: 10px 24px;
    font-size: 0.8rem;
  }
  
  .hero-badge {
    font-size: 0.5rem;
    padding: 3px 12px;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  .hero-content {
    animation: none !important;
  }
  
  .feature-card,
  .feature-card:hover,
  .showcase-card,
  .showcase-card:hover,
  .blog-card,
  .blog-card:hover,
  .btn,
  .btn-premium,
  .btn-hero-primary,
  .btn-hero-secondary,
  .btn-sakomoto-primary {
    transition: none !important;
    transform: none !important;
  }
  
  .feature-card::before {
    transform: scaleX(0) !important;
  }
  
  .ticker-move {
    animation: none !important;
    transform: none !important;
  }
  
  .showcase-card:hover .showcase-img {
    transform: none !important;
  }
  
  .blog-card:hover img {
    transform: none !important;
  }
}

/* ============================================
   TOUCH DEVICES
   ============================================ */
@media (hover: none) and (pointer: coarse) {
  .feature-card:hover {
    transform: none !important;
  }
  
  .feature-card:hover::before {
    transform: scaleX(0) !important;
  }
  
  .showcase-card:hover {
    transform: none !important;
  }
  
  .showcase-card:hover .showcase-img {
    transform: none !important;
  }
  
  .blog-card:hover {
    transform: none !important;
  }
  
  .blog-card:hover img {
    transform: none !important;
  }
  
  .btn-premium:hover {
    transform: none !important;
  }
  
  .btn-hero-primary:hover,
  .btn-hero-secondary:hover {
    transform: none !important;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  #scrollTopBtn {
    display: none !important;
  }
  
  .news-ticker-container {
    display: none !important;
  }
  
  #stats {
    background: #005a9c !important;
  }
  
  .hero-overlay {
    display: none !important;
  }
}

/* ------------------------------------------------ */
/* -------------------- SLIDER -------------------- */
/* ------------------------------------------------ */

.slider {
	width: calc(3 * var(--slide-width));
	height: calc(2 * var(--slide-height));
	display: flex;
	align-items: center;
}

.slider--btn {
	--size: 40px;

	display: inline-flex;
	justify-content: center;
	align-items: center;
	opacity: 0.7;
	transition: opacity 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
	z-index: 999;

	& svg {
		width: var(--size);
		height: var(--size);
		stroke: white;
	}

	&:hover {
		opacity: 1;
	}
}

.slides__wrapper {
	width: 100%;
	height: 100%;

	display: grid;
	place-items: center;

	& > * {
		grid-area: 1 / -1;
	}
}

.slides,
.slides--infos {
	width: 100%;
	height: 100%;

	pointer-events: none;

	display: grid;
	place-items: center;
	& > * {
		grid-area: 1 / -1;
	}
}

/* ------------------------------------------------ */
/* -------------------- SLIDE --------------------- */
/* ------------------------------------------------ */

.slide {
	--slide-tx: 0px;
	--slide-ty: 0vh;
	--padding: 0px;
	--offset: 0;

	width: var(--slide-width);
	height: auto;
	aspect-ratio: var(--slide-aspect);
	user-select: none;
	perspective: 800px;

	transform: perspective(1000px)
		translate3d(var(--slide-tx), var(--slide-ty), var(--slide-tz, 0))
		rotateY(var(--slide-rotY)) scale(var(--slide-scale));
	transition: transform var(--slide-transition-duration)
		var(--slide-transition-easing);
}

.slide[data-current] {
	--slide-scale: 1.2;
	--slide-tz: 0px;
	--slide-tx: 0px;
	--slide-rotY: 0;

	pointer-events: auto;
}

.slide[data-next] {
	--slide-tx: calc(1 * var(--slide-width) * 1.07);
	--slide-rotY: -45deg;
}

.slide[data-previous] {
	--slide-tx: calc(-1 * var(--slide-width) * 1.07);
	--slide-rotY: 45deg;
}

.slide:not([data-current]) {
	--slide-scale: 1;
	--slide-tz: 0;
	/* --slide-tx: calc(var(--offset) * var(--slide-width) * 1.05); */
	/* --slide-rotY: calc(var(--dir) * -45deg); */

	pointer-events: none;
}

.slide[data-current] {
	& .slide--image {
		filter: brightness(0.8);
	}
}

.slide:not([data-current]) {
	& .slide--image {
		filter: brightness(0.5);
	}
}

.slide__inner {
	--rotX: 0;
	--rotY: 0;
	--bgPosX: 0%;
	--bgPosY: 0%;

	position: relative;
	left: calc(var(--padding) / 2);
	top: calc(var(--padding) / 2);
	width: calc(100% - var(--padding));
	height: calc(100% - var(--padding));
	transform-style: preserve-3d;
	transform: rotateX(var(--rotX)) rotateY(var(--rotY));
}

.slide--image__wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.slide--image {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	object-fit: cover;
	transform: translate(-50%, -50%) scale(1.25)
		translate3d(var(--bgPosX), var(--bgPosY), 0);
	transition: filter var(--slide-transition-duration)
		var(--slide-transition-easing);
}

.slide__bg {
	position: fixed;
	inset: -20%;
	background-image: var(--bg);
	background-size: cover;
	background-position: center center;

	z-index: -1;
	pointer-events: none;

	transition: opacity var(--slide-transition-duration) ease,
		transform var(--slide-transition-duration) ease;

	&::before {
		content: "";
		position: absolute;
		inset: 0;
	}

	&::before {
		background: rgba(0, 0, 0, 0.8);
		backdrop-filter: blur(8px);
	}

	&:not([data-current]) {
		opacity: 0;
	}

	&[data-previous] {
		transform: translateX(-10%);
	}

	&[data-next] {
		transform: translateX(10%);
	}
}

/* ------------ SLIDE INFO ---------------- */

.slide-info {
	--padding: 0px;

	position: relative;
	width: var(--slide-width);
	height: 100%;
	aspect-ratio: var(--slide-aspect);
	user-select: none;
	perspective: 800px;
	z-index: 100;
}

.slide-info[data-current] {
	& .slide-info--text span {
		opacity: 1;
		transform: translate3d(0, 0, 0);
		transition-delay: 250ms;
	}
}

.slide-info:not([data-current]) {
	& .slide-info--text span {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
		transition-delay: 0ms;
	}
}

.slide-info__inner {
	position: relative;
	left: calc(var(--padding) / 2);
	top: calc(var(--padding) / 2);
	width: calc(100% - var(--padding));
	height: calc(100% - var(--padding));
	transform-style: preserve-3d;
	transform: rotateX(var(--rotX)) rotateY(var(--rotY));
}

.slide-info--text__wrapper {
	--z-offset: 45px;

	position: absolute;
	height: fit-content;
	left: -15%;
	bottom: 15%;
	transform: translateZ(var(--z-offset));
	z-index: 2;
	pointer-events: none;
}

.slide-info--text {
	font-family: var(--font-clash-display);
	color: #fff;
	overflow: hidden;

	& span {
		display: block;
		white-space: nowrap;
		transition: var(--slide-transition-duration) var(--slide-transition-easing);
		transition-property: opacity, transform;
	}

	&[data-title],
	&[data-subtitle] {
		font-size: min(3cqw, 2.4rem);
		font-weight: 800;
		letter-spacing: 0.2cqw;
		white-space: nowrap;
		text-transform: uppercase;
	}

	&[data-subtitle] {
		margin-left: 2cqw;
		font-size: min(2.2cqw, 1.8rem);
		font-weight: 600;
	}

	&[data-description] {
		margin-left: 1cqw;
		font-size: min(1.5cqw, 0.95rem);
		font-family: var(--font-archivo);
		font-weight: 300;
	}
}

/* ------------------------------------------------ */
/* -------------------- LOADER --------------------- */
/* ------------------------------------------------ */

.loader {
	position: fixed;
	inset: 0;

	display: grid;
	place-items: center;

	background: #000;
	z-index: 1000;

	opacity: 1;
	transition: opacity 0.5s ease-out;

	.loader__text {
		font-family: var(--font-clash-display);
		font-size: clamp(2rem, 2vw, 5rem);
		font-weight: 800;
		color: #fff;
	}
}

/* ------------------------------------------- */

.support {
	position: absolute;
	right: 10px;
	bottom: 10px;
	padding: 10px;
	display: flex;
	a {
		margin: 0 10px;
		color: #fff;
		font-size: 1.8rem;
		backface-visibility: hidden;
		transition: all 150ms ease;
		&:hover {
			transform: scale(1.1);
		}
	}
}