body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #222;
  background: linear-gradient(120deg, #f5f7fa 0%, #eaf0fb 100%);
}
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; }
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.2rem; color: #e74c3c; letter-spacing: 2px; }
h4 { font-size: 1rem; margin-bottom: 0.5em; }
/* Navbar styles extracted from your stylesheet (scope: header + nav + dropdown + mobile) */

/* MAIN HEADER */
.main-header {
    background: #FFFFFF;
    width: 100%;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #EEEEEE;
}

/* Container */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
    gap: 20px;
}

/* LOGO */
.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    flex-shrink: 0;
    order: 1;
    margin-right: auto;
}

.header-logo .logo-icon {
    width: 48px;
    height: 48px;
    background: #113768;
    border-radius: 16px;
    border: 2px solid rgba(17, 55, 104, 0.15);
    box-shadow: 0 4px 16px rgba(21, 57, 106, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
}

.header-logo .logo-icon:hover {
    transform: scale(1.05);
}

.header-logo .h-letter {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}

.header-logo .logo-text {
    display: flex;
    flex-direction: column;
    color: #113768;
}

.header-logo .company-main {
    font-size: 1rem;
    font-weight: 700;
    color: #113768;
    letter-spacing: 0.5px;
}

.header-logo .company-sub {
    font-size: 0.7rem;
    color: #7C7C7C;
    letter-spacing: 0.5px;
}

/* NAVIGATION - Fixed Alignment */
.header-nav-left {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;
    order: 2;
    flex: 1;
    justify-content: flex-start;
    margin-left: 40px;
}

.header-nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;
    order: 3;
    justify-content: flex-end;
}

.header-nav-left .nav-link,
.header-nav-right .nav-link {
    color: #222222;
    font-weight: 300;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
}

.header-nav-left .nav-link:hover,
.header-nav-right .nav-link:hover {
    color: #3A68B8;
}

.header-nav-left .nav-link.active,
.header-nav-right .nav-link.active {
    color: #3A68B8;
}

.header-nav-left .nav-link.active::after,
.header-nav-right .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #3A68B8;
}

/* CTA BUTTON */
.header-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid #3A68B8;
    border-radius: 999px;
    color: #3A68B8;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-cta-btn:hover {
    background: #3A68B8;
    color: #FFFFFF;
}

/* Mobile Menu Toggle - Fixed Position */
.header-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    width: 28px;
    height: 28px;
    justify-content: center;
    z-index: 1001;
    transition: all 0.3s ease;
    order: 4;
}

.header-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background: #222222;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.header-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.header-menu.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.header-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* DROPDOWN */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 12px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
    border: 1px solid #EEEEEE;
}

.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown .dropdown-menu li a {
    color: #222222;
    font-size: 0.9rem;
    font-weight: 300;
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-dropdown .dropdown-menu li a:hover {
    background: #F7F7F7;
    color: #3A68B8;
}

/* RESPONSIVE - MOBILE - Fixed Layout */
@media (max-width: 1024px) {
    .header-container {
        justify-content: space-between;
        gap: 10px;
        padding: 0 20px;
    }

    .header-logo {
        order: 1;
        margin: 0;
    }

    .header-menu {
        display: flex;
        order: 2;
        position: static;
        margin-left: auto;
    }

    .header-nav-left,
    .header-nav-right {
        position: fixed;
        left: 0;
        right: 0;
        width: 100%;
        background: #FFFFFF;
        flex-direction: column;
        gap: 20px;
        margin: 0;
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        border-bottom: 1px solid #EEEEEE;
    }

    /* Left Navigation - Top Section */
    .header-nav-left {
        top: 85px;
        padding: 30px 40px 20px;
        max-height: 45vh;
        border-bottom: 2px solid #f0f2f5;
    }

    .header-nav-left.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    /* Right Navigation - Middle Section */
    .header-nav-right {
        top: calc(85px + 45vh);
        padding: 20px 40px 30px;
        max-height: 45vh;
        border-top: none;
    }

    .header-nav-right.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    /* Dropdown styles in mobile */
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 12px 20px;
        margin: 10px 0;
        border: none;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-radius: 8px;
        border-left: 4px solid #3A68B8;
    }

    .nav-dropdown .dropdown-menu li a {
        padding: 12px 0;
        font-size: 0.95rem;
        color: #495057;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-dropdown .dropdown-menu li:last-child a {
        border-bottom: none;
    }

    /* Mobile menu overlay backdrop */
    .header-menu.active::after {
        content: '';
        position: fixed;
        top: 85px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 1;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        height: 100vh;
    }

    /* Navigation links in mobile - Better spacing */
    .header-nav-left .nav-link,
    .header-nav-right .nav-link {
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        text-align: center;
        width: 100%;
    }

    .header-nav-left .nav-link:last-child,
    .header-nav-right .nav-link:last-child {
        border-bottom: none;
    }

    /* CTA Button in mobile - Full width */
    .header-cta-btn {
        margin-top: 20px;
        padding: 14px 24px;
        width: 100%;
        justify-content: center;
        text-align: center;
        border-radius: 8px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 70px;
        padding: 0 15px;
    }

    .header-nav-left {
        top: 70px;
        padding: 25px 20px 15px;
        max-height: 42vh;
    }

    .header-nav-right {
        top: calc(70px + 42vh);
        padding: 15px 20px 25px;
        max-height: 42vh;
    }

    .header-logo .logo-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .header-logo .h-letter {
        font-size: 1.5rem;
    }

    .header-logo .company-main {
        font-size: 0.9rem;
    }

    .header-logo .company-sub {
        font-size: 0.6rem;
    }

    .header-menu.active::after {
        top: 70px;
    }

    .header-nav-left .nav-link,
    .header-nav-right .nav-link {
        padding: 12px 0;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        height: 65px;
        padding: 0 10px;
    }

    .header-nav-left {
        top: 65px;
        padding: 20px 15px 15px;
        max-height: 40vh;
    }

    .header-nav-right {
        top: calc(65px + 40vh);
        padding: 15px 15px 20px;
        max-height: 40vh;
    }

    .header-menu.active::after {
        top: 65px;
    }

    .header-nav-left .nav-link,
    .header-nav-right .nav-link {
        padding: 10px 0;
        font-size: 0.9rem;
    }

    .header-cta-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        margin-top: 15px;
    }
}

/* Desktop Navigation Hover States - Enhanced */
@media (min-width: 1025px) {
    .header-nav-left .nav-link:hover,
    .header-nav-right .nav-link:hover {
        color: #3A68B8;
        transform: translateY(-1px);
    }

    .header-cta-btn:hover {
        background: #3A68B8;
        color: #FFFFFF;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(58, 104, 184, 0.3);
    }
}

/* Hero Banner Section - Improved Responsiveness */
.hero-banner {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 600px;
  background-image: url('images/korean-event-bg2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 245, 245, 0.75) 0%, rgba(240, 248, 255, 0.65) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 2em;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: clamp(3px, 1vw, 8px);
  color: #222;
  margin: 0 0 0.4em 0;
  line-height: 1.2;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: #555;
  line-height: 1.8;
  letter-spacing: 1px;
  margin: 0 0 2.5em 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1.5em;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: clamp(0.8em, 2vw, 1em) clamp(2em, 4vw, 2.5em);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #2d6cdf 0%, #1a4fa8 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1a4fa8 0%, #0d3570 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(45, 108, 223, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #2d6cdf;
  border: 2px solid #2d6cdf;
}

.btn-secondary:hover {
  background: #2d6cdf;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(45, 108, 223, 0.25);
}

/* Featured Event Section - Clean Minimal Two-Column Layout */
.featured-event-section {
  padding: 6em 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-event-container {
  max-width: 1400px;
  width: 100%;
  padding: 0 3em;
  display: flex;
  gap: 4em;
  align-items: center;
}

.featured-event-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-event-image img {
  width: 100%;
  max-width: 650px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

.featured-event-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-event-card {
  background: linear-gradient(135deg, #fafbfc 0%, #f5f7fa 100%);
  border-radius: 24px;
  padding: 3em 2.5em;
  box-shadow: 0 12px 40px rgba(45, 108, 223, 0.12);
  max-width: 550px;
  width: 100%;
  border: 1px solid rgba(45, 108, 223, 0.08);
  transition: all 0.3s ease;
}

.featured-event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(45, 108, 223, 0.18);
}

.event-title {
  font-size: 2em;
  font-weight: 600;
  color: #222;
  margin: 0 0 1em 0;
  letter-spacing: 0.5px;
  line-height: 1.3;
  font-family: 'Montserrat', sans-serif;
}

.event-meta {
  margin-bottom: 1.5em;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 0.8em;
  margin-bottom: 1.2em;
  color: #666;
  font-size: 0.95em;
}

.event-meta-item i {
  color: #e74c3c;
  font-size: 1.1em;
}

.event-stats {
  display: flex;
  gap: 2.5em;
  margin-top: 1em;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-item strong {
  font-size: 1.8em;
  font-weight: 700;
  color: #2d6cdf;
  margin-bottom: 0.2em;
  font-family: 'Montserrat', sans-serif;
}

.stat-item span {
  font-size: 0.9em;
  color: #888;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.event-description {
  font-size: 1em;
  font-weight: 400;
  color: #555;
  line-height: 1.8;
  letter-spacing: 0.3px;
  margin: 0 0 2em 0;
  font-family: 'Montserrat', sans-serif;
}

.btn-case-study {
  display: inline-block;
  padding: 1em 2.5em;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #2d6cdf 0%, #1a4fa8 100%);
  color: #ffffff;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(45, 108, 223, 0.2);
}

.btn-case-study:hover {
  background: linear-gradient(135deg, #1a4fa8 0%, #0d3570 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(45, 108, 223, 0.3);
}

/* Category Section - Floating Cards */
.category-section {
  padding: clamp(3em, 8vw, 6em) clamp(1em, 4vw, 3em);
  background: linear-gradient(135deg, #f8f9fc 0%, #eef3fb 50%, #fafbfc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.category-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45, 108, 223, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.category-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(231, 76, 60, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(30px, -30px) rotate(5deg); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.category-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5em, 3vw, 2.5em);
  max-width: 1400px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.category-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.8em 2.2em;
  text-align: center;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid transparent;
  cursor: pointer;
  animation: fadeInUp 0.6s ease-out backwards;
}

.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }
.category-card:nth-child(5) { animation-delay: 0.5s; }
.category-card:nth-child(6) { animation-delay: 0.6s; }

.category-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(45, 108, 223, 0.25);
  border-color: rgba(45, 108, 223, 0.2);
}

.category-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e8f0ff 0%, #d4e4ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8em;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(45, 108, 223, 0.15);
}

.category-card:hover .category-icon {
  transform: scale(1.15) rotate(360deg);
  background: linear-gradient(135deg, #2d6cdf 0%, #1a4fa8 100%);
}

.category-icon i {
  font-size: 2.2em;
  color: #2d6cdf;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.category-card:hover .category-icon i {
  color: #ffffff;
}

.category-title {
  font-size: 1.35em;
  font-weight: 700;
  color: #222;
  margin: 0 0 0.9em 0;
  letter-spacing: 0.5px;
  line-height: 1.4;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.category-card:hover .category-title {
  color: #2d6cdf;
}

.category-description {
  font-size: 0.98em;
  font-weight: 400;
  color: #666;
  line-height: 1.8;
  letter-spacing: 0.3px;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  z-index: 1;
}

/* Process Section - How We Work */
.process-section {
  padding: clamp(4em, 8vw, 6em) clamp(1.5em, 4vw, 3em);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.process-header {
  text-align: center;
  max-width: 700px;
  margin-bottom: 4em;
  animation: fadeInUp 0.8s ease-out;
}

.process-subtitle {
  font-size: 0.9em;
  font-weight: 600;
  color: #e74c3c;
  letter-spacing: 3px;
  margin-bottom: 0.8em;
  text-transform: uppercase;
}

.process-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 300;
  color: #222;
  letter-spacing: 3px;
  margin-bottom: 0.5em;
  font-family: 'Montserrat', sans-serif;
}

.process-description {
  font-size: 1.1em;
  font-weight: 300;
  color: #666;
  line-height: 1.7;
  letter-spacing: 0.5px;
}

.process-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1300px;
  width: 100%;
  gap: 2em;
  padding: 0 2em;
}

.process-line {
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, 
    rgba(45, 108, 223, 0.2) 0%, 
    rgba(45, 108, 223, 0.8) 50%, 
    rgba(45, 108, 223, 0.2) 100%);
  z-index: 1;
}

.process-step {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out backwards;
}

.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }
.process-step:nth-child(5) { animation-delay: 0.5s; }
.process-step:nth-child(6) { animation-delay: 0.6s; }

.process-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2em 1.5em;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 1px solid rgba(45, 108, 223, 0.1);
  cursor: pointer;
  max-width: 220px;
}

.process-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 15px 45px rgba(45, 108, 223, 0.2);
}

.process-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #2d6cdf 0%, #1a4fa8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(45, 108, 223, 0.3);
  font-family: 'Montserrat', sans-serif;
  transition: all 0.4s ease;
  z-index: 3;
}

.process-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #e8f0ff 0%, #d4e4ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2em auto 1.5em;
  transition: all 0.4s ease;
  position: relative;
}

.process-card:hover .process-icon {
  background: linear-gradient(135deg, #2d6cdf 0%, #1a4fa8 100%);
}

.process-icon i {
  font-size: 2em;
  color: #2d6cdf;
  transition: all 0.4s ease;
}

.process-card:hover .process-icon i {
  color: #ffffff;
}

.process-step-title {
  font-size: 1.1em;
  font-weight: 600;
  color: #222;
  margin: 0 0 0.8em 0;
  letter-spacing: 0.5px;
  line-height: 1.4;
  font-family: 'Montserrat', sans-serif;
}

.process-step-description {
  font-size: 0.9em;
  font-weight: 400;
  color: #666;
  line-height: 1.6;
  letter-spacing: 0.3px;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

/* B2B Delegation Section */
.b2b-delegation-section {
  padding: clamp(4em, 8vw, 6em) 0;
  background: linear-gradient(135deg, #f0f8ff 0%, #e8f5e9 50%, #f5f9fc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.b2b-delegation-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(144, 202, 249, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite;
}

.b2b-delegation-container {
  max-width: 1400px;
  width: 100%;
  padding: 0 clamp(1.5em, 4vw, 3em);
  display: flex;
  gap: clamp(2em, 6vw, 4em);
  align-items: center;
  position: relative;
  z-index: 1;
}

.b2b-delegation-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.b2b-delegation-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.b2b-delegation-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.b2b-delegation-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 28px;
  padding: 3em 2.8em;
  box-shadow: 0 15px 50px rgba(45, 108, 223, 0.12);
  max-width: 650px;
  width: 100%;
  border: 1px solid rgba(144, 202, 249, 0.3);
  backdrop-filter: blur(10px);
}

.b2b-subtitle {
  font-size: 0.85em;
  font-weight: 700;
  color: #2d6cdf;
  letter-spacing: 3px;
  margin-bottom: 0.8em;
  text-transform: uppercase;
}

.b2b-title {
  font-size: 2.3em;
  font-weight: 600;
  color: #222;
  margin: 0 0 0.6em 0;
  letter-spacing: 1px;
  line-height: 1.3;
  font-family: 'Montserrat', sans-serif;
}

.b2b-intro {
  font-size: 1.05em;
  font-weight: 400;
  color: #666;
  line-height: 1.7;
  letter-spacing: 0.3px;
  margin: 0 0 2em 0;
  font-family: 'Montserrat', sans-serif;
}

.b2b-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5em 0;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.b2b-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2em;
  padding: 1.2em;
  background: linear-gradient(135deg, rgba(240, 248, 255, 0.6) 0%, rgba(232, 245, 233, 0.4) 100%);
  border-radius: 16px;
  border-left: 4px solid #2d6cdf;
  transition: all 0.3s ease;
}

.b2b-feature-item:hover {
  transform: translateX(8px);
}

.b2b-feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2d6cdf 0%, #1a4fa8 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(45, 108, 223, 0.25);
}

.b2b-feature-icon i {
  font-size: 1.5em;
  color: #ffffff;
}

.b2b-feature-text h4 {
  font-size: 1.05em;
  font-weight: 600;
  color: #222;
  margin: 0 0 0.4em 0;
  font-family: 'Montserrat', sans-serif;
}

.b2b-feature-text p {
  font-size: 0.9em;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.btn-b2b {
  display: inline-block;
  padding: 1.1em 2.8em;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #2d6cdf 0%, #1a4fa8 100%);
  color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(45, 108, 223, 0.25);
}

.btn-b2b:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(45, 108, 223, 0.35);
}

/* Add-Ons Service Grid Section */
.addons-service-section {
  padding: clamp(4em, 8vw, 6em) clamp(1.5em, 4vw, 3em);
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.addons-service-header {
  text-align: center;
  max-width: 800px;
  margin-bottom: 4em;
}

.addons-subtitle {
  font-size: 0.85em;
  font-weight: 700;
  color: #e74c3c;
  letter-spacing: 3px;
  margin-bottom: 0.8em;
  text-transform: uppercase;
}

.addons-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 300;
  color: #222;
  letter-spacing: 2px;
  margin: 0 0 0.5em 0;
  font-family: 'Montserrat', sans-serif;
}

.addons-description {
  font-size: 1.1em;
  color: #666;
  line-height: 1.7;
}

.addons-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5em, 3vw, 2.5em);
  max-width: 1400px;
  width: 100%;
}

.addon-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5em 2em;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  cursor: pointer;
  animation: fadeInUp 0.8s ease-out backwards;
}

.addon-card:nth-child(1) { animation-delay: 0.1s; }
.addon-card:nth-child(2) { animation-delay: 0.2s; }
.addon-card:nth-child(3) { animation-delay: 0.3s; }
.addon-card:nth-child(4) { animation-delay: 0.4s; }
.addon-card:nth-child(5) { animation-delay: 0.5s; }
.addon-card:nth-child(6) { animation-delay: 0.6s; }

.addon-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 15px 45px rgba(45, 108, 223, 0.15);
}

.addon-icon-wrapper {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #f5f9ff 0%, #e8f4f8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.8em;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(45, 108, 223, 0.08);
}

.addon-card:hover .addon-icon-wrapper {
  background: linear-gradient(135deg, #2d6cdf 0%, #1a4fa8 100%);
  transform: scale(1.1);
}

.addon-icon-wrapper i {
  font-size: 2.5em;
  color: #2d6cdf;
  transition: all 0.4s ease;
}

.addon-card:hover .addon-icon-wrapper i {
  color: #ffffff;
}

.addon-title {
  font-size: 1.2em;
  font-weight: 600;
  color: #222;
  margin: 0 0 0.8em 0;
  font-family: 'Montserrat', sans-serif;
}

.addon-card:hover .addon-title {
  color: #2d6cdf;
}

.addon-description {
  font-size: 0.95em;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Gallery Preview Strip Section */
.gallery-preview-section {
  padding: clamp(4em, 8vw, 6em) 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
  overflow: hidden;
}

.gallery-preview-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3em;
  padding: 0 2em;
}

.gallery-subtitle {
  font-size: 0.85em;
  font-weight: 700;
  color: #e74c3c;
  letter-spacing: 3px;
  margin-bottom: 0.8em;
  text-transform: uppercase;
}

.gallery-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 300;
  color: #222;
  letter-spacing: 2px;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

.gallery-preview-slider {
  display: flex;
  gap: clamp(1em, 3vw, 2em);
  padding: 0 clamp(1.5em, 4vw, 3em) 2em;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.gallery-preview-slider::-webkit-scrollbar {
  height: 8px;
}

.gallery-preview-slider::-webkit-scrollbar-track {
  background: rgba(45, 108, 223, 0.05);
  border-radius: 10px;
  margin: 0 3em;
}

.gallery-preview-slider::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #2d6cdf 0%, #e74c3c 100%);
  border-radius: 10px;
}

.gallery-preview-item {
  flex: 0 0 auto;
  width: clamp(300px, 45vw, 450px);
  height: clamp(200px, 30vw, 300px);
  scroll-snap-align: start;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
}

.gallery-preview-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 45px rgba(45, 108, 223, 0.2);
}

.gallery-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-preview-item:hover img {
  transform: scale(1.1);
}

.gallery-preview-button {
  text-align: center;
  margin-top: 3em;
  padding: 0 2em;
}

.btn-gallery {
  display: inline-block;
  padding: 1.1em 2.8em;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #2d6cdf 0%, #1a4fa8 100%);
  color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(45, 108, 223, 0.25);
  font-family: 'Montserrat', sans-serif;
}

.btn-gallery:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(45, 108, 223, 0.35);
}

/* Stats / Achievement Section */
.stats-achievement-section {
  padding: clamp(4em, 8vw, 6em) clamp(1.5em, 4vw, 3em);
  background: linear-gradient(135deg, #f8fafb 0%, #eef5f9 50%, #f0f7fb 100%);
  position: relative;
  overflow: hidden;
}

.stats-achievement-section::before,
.stats-achievement-section::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(45, 108, 223, 0.2) 50%, 
    transparent 100%);
}

.stats-achievement-section::before { top: 0; }
.stats-achievement-section::after { bottom: 0; }

.stats-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(2em, 5vw, 4em);
  position: relative;
  z-index: 1;
}

.stat-item-large {
  text-align: center;
  padding: 2em 1.5em;
  position: relative;
  animation: fadeInUp 1s ease-out backwards;
}

.stat-item-large:nth-child(1) { animation-delay: 0.1s; }
.stat-item-large:nth-child(2) { animation-delay: 0.2s; }
.stat-item-large:nth-child(3) { animation-delay: 0.3s; }
.stat-item-large:nth-child(4) { animation-delay: 0.4s; }

.stat-item-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #2d6cdf 0%, #e74c3c 100%);
  border-radius: 2px;
  opacity: 0;
  transition: all 0.5s ease;
}

.stat-item-large:hover::before {
  opacity: 1;
  width: 80px;
}

.stat-number {
  font-size: clamp(3.5rem, 8vw, 5rem);
  font-weight: 200;
  color: #2d6cdf;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 0.2em;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.4s ease;
  display: inline-block;
}

.stat-item-large:hover .stat-number {
  transform: scale(1.1);
  color: #1a4fa8;
  text-shadow: 0 4px 20px rgba(45, 108, 223, 0.2);
}

.stat-label {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 500;
  color: #222;
  letter-spacing: 2px;
  margin-bottom: 0.4em;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.stat-item-large:hover .stat-label {
  color: #2d6cdf;
}

.stat-sublabel {
  font-size: 0.95em;
  color: #888;
  letter-spacing: 1px;
  line-height: 1.6;
  font-family: 'Montserrat', sans-serif;
}

/* Final CTA Section */
.final-cta-section {
  padding: clamp(4em, 10vw, 8em) clamp(1.5em, 4vw, 3em);
  background: linear-gradient(135deg, #fff5f5 0%, #f0f8ff 50%, #f5f9fc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45, 108, 223, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.final-cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(231, 76, 60, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite reverse;
}

.final-cta-container {
  max-width: 900px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
}

.final-cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: #222;
  letter-spacing: clamp(1px, 0.5vw, 3px);
  margin: 0 0 0.4em 0;
  line-height: 1.2;
  font-family: 'Montserrat', sans-serif;
}

.final-cta-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 300;
  color: #666;
  line-height: 1.6;
  letter-spacing: 0.5px;
  margin: 0 0 2.5em 0;
  font-family: 'Montserrat', sans-serif;
}

.final-cta-buttons {
  display: flex;
  gap: 1.5em;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 1.1em 2.8em;
  font-size: 1.05em;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  border: 2px solid transparent;
}

.btn-cta-primary {
  background: linear-gradient(135deg, #2d6cdf 0%, #1a4fa8 100%);
  color: #ffffff;
  box-shadow: 0 6px 25px rgba(45, 108, 223, 0.25);
}

.btn-cta-primary:hover {
  background: linear-gradient(135deg, #1a4fa8 0%, #0d3570 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(45, 108, 223, 0.35);
}

.btn-cta-secondary {
  background: transparent;
  color: #25D366;
  border: 2px solid #25D366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.15);
}

.btn-cta-secondary:hover {
  background: #25D366;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}
  
/* ========================================
   LARGE DESKTOP (1441px+)
   ======================================== */
@media (min-width: 1441px) {
    .hero-banner {
        height: 90vh;
    }
    
    .category-container,
    .process-container,
    .addons-service-grid {
        max-width: 1600px;
    }
}

/* ========================================
   DESKTOP (1025px - 1440px)
   ======================================== */
@media (min-width: 1025px) and (max-width: 1440px) {
    .hero-banner {
        height: 80vh;
    }
    
    .featured-event-container,
    .b2b-delegation-container {
        padding: 0 2em;
        gap: 3em;
    }
}

/* ========================================
   TABLET LANDSCAPE (769px - 1024px)
   ======================================== */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Hero Section */
    .hero-banner {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 3.5rem);
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        font-size: clamp(0.95rem, 2vw, 1.2rem);
        margin-bottom: 2em;
    }
    
    .hero-buttons {
        gap: 1.2em;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.9em 2.2em;
        font-size: 1rem;
        min-width: 180px;
    }
    
    /* Category Section */
    .category-section {
        padding: 4em 2em;
    }
    
    .category-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2em;
    }
    
    /* Featured Event */
    .featured-event-section {
        padding: 4em 0;
    }
    
    .featured-event-container {
        flex-direction: column;
        gap: 2.5em;
        padding: 0 2em;
    }
    
    .featured-event-image,
    .featured-event-content {
        flex: none;
        width: 100%;
        max-width: 700px;
    }
    
    .featured-event-card {
        max-width: 100%;
        padding: 2.5em 2em;
    }
    
    .event-title {
        font-size: 1.8em;
    }
    
    .event-stats {
        gap: 2em;
    }
    
    /* Process Section */
    .process-section {
        padding: 4em 2em;
    }
    
    .process-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 3em 2em;
    }
    
    .process-line {
        display: none;
    }
    
    .process-step {
        flex: 0 0 calc(50% - 1em);
        max-width: 300px;
    }
    
    .process-card {
        max-width: 100%;
    }
    
    /* B2B Delegation */
    .b2b-delegation-section {
        padding: 4em 0;
    }
    
    .b2b-delegation-container {
        flex-direction: column;
        gap: 2.5em;
        padding: 0 2em;
    }
    
    .b2b-delegation-image,
    .b2b-delegation-content {
        flex: none;
        width: 100%;
        max-width: 700px;
    }
    
    .b2b-delegation-card {
        max-width: 100%;
        padding: 2.5em 2em;
    }
    
    .b2b-title {
        font-size: 2em;
    }
    
    /* Add-Ons Section */
    .addons-service-section {
        padding: 4em 2em;
    }
    
    .addons-service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2em;
    }
    
    /* Gallery Section */
    .gallery-preview-section {
        padding: 4em 0;
    }
    
    .gallery-preview-slider {
        padding: 0 2em 2em;
    }
    
    .gallery-preview-item {
        width: clamp(280px, 50vw, 400px);
        height: clamp(180px, 35vw, 270px);
    }
    
    /* Stats Section */
    .stats-achievement-section {
        padding: 4em 2em;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3em;
    }
    
    /* Final CTA */
    .final-cta-section {
        padding: 5em 2em;
    }
    
    .final-cta-buttons {
        gap: 1.2em;
    }
}

/* ========================================
   TABLET PORTRAIT (481px - 768px)
   ======================================== */
@media (min-width: 481px) and (max-width: 768px) {
    /* Hero Section */
    .hero-banner {
        height: 65vh;
        min-height: 450px;
    }
    
    .hero-content {
        padding: 0 1.5em;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 3rem);
        letter-spacing: 3px;
        margin-bottom: 0.5em;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        margin-bottom: 2em;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1em;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 0.9em 2em;
        min-width: auto;
    }
    
    /* Category Section */
    .category-section {
        padding: 3em 1.5em;
    }
    
    .category-container {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }
    
    .category-card {
        padding: 2.2em 1.8em;
    }
    
    .category-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5em;
    }
    
    .category-icon i {
        font-size: 2em;
    }
    
    .category-title {
        font-size: 1.25em;
    }
    
    /* Featured Event */
    .featured-event-section {
        padding: 3em 0;
    }
    
    .featured-event-container {
        flex-direction: column;
        gap: 2em;
        padding: 0 1.5em;
    }
    
    .featured-event-image,
    .featured-event-content {
        width: 100%;
        max-width: 100%;
    }
    
    .featured-event-card {
        padding: 2em 1.5em;
    }
    
    .event-title {
        font-size: 1.6em;
    }
    
    .event-stats {
        flex-direction: row;
        gap: 2em;
    }
    
    .stat-item strong {
        font-size: 1.6em;
    }
    
    /* Process Section */
    .process-section {
        padding: 3em 1.5em;
    }
    
    .process-header {
        margin-bottom: 3em;
    }
    
    .process-title {
        font-size: clamp(1.8rem, 5vw, 2.4rem);
        letter-spacing: 2px;
    }
    
    .process-container {
        flex-direction: column;
        align-items: center;
        gap: 2em;
        padding: 0;
    }
    
    .process-line {
        display: none;
    }
    
    .process-step {
        width: 100%;
        max-width: 400px;
    }
    
    .process-card {
        max-width: 100%;
        padding: 2em 1.5em;
    }
    
    /* B2B Delegation */
    .b2b-delegation-section {
        padding: 3em 0;
    }
    
    .b2b-delegation-container {
        flex-direction: column;
        gap: 2em;
        padding: 0 1.5em;
    }
    
    .b2b-delegation-image,
    .b2b-delegation-content {
        width: 100%;
        max-width: 100%;
    }
    
    .b2b-delegation-card {
        padding: 2em 1.5em;
    }
    
    .b2b-title {
        font-size: 1.8em;
    }
    
    .b2b-features {
        gap: 1.2em;
    }
    
    .b2b-feature-item {
        padding: 1em;
    }
    
    .b2b-feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .b2b-feature-icon i {
        font-size: 1.3em;
    }
    
    /* Add-Ons Section */
    .addons-service-section {
        padding: 3em 1.5em;
    }
    
    .addons-service-grid {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }
    
    .addon-card {
        padding: 2em 1.5em;
    }
    
    .addon-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5em;
    }
    
    .addon-icon-wrapper i {
        font-size: 2.2em;
    }
    
    /* Gallery Section */
    .gallery-preview-section {
        padding: 3em 0;
    }
    
    .gallery-preview-slider {
        padding: 0 1.5em 2em;
    }
    
    .gallery-preview-item {
        width: 320px;
        height: 220px;
    }
    
    /* Stats Section */
    .stats-achievement-section {
        padding: 3em 1.5em;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2em;
    }
    
    .stat-number {
        font-size: clamp(3rem, 8vw, 4rem);
    }
    
    /* Final CTA */
    .final-cta-section {
        padding: 4em 1.5em;
    }
    
    .final-cta-title {
        font-size: clamp(1.8rem, 5vw, 2.8rem);
    }
    
    .final-cta-buttons {
        flex-direction: column;
        gap: 1em;
        width: 100%;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }
}

/* ========================================
   MOBILE (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
    /* Hero Section */
    .hero-banner {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-content {
        padding: 0 1.2em;
    }
    
    .hero-title {
        font-size: 1.6rem;
        letter-spacing: 2px;
        margin-bottom: 0.4em;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.8em;
        line-height: 1.6;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8em;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 0.85em 1.8em;
        font-size: 0.95rem;
        min-width: auto;
    }
    
    /* Category Section */
    .category-section {
        padding: 2.5em 1.2em;
    }
    
    .category-container {
        grid-template-columns: 1fr;
        gap: 1.2em;
    }
    
    .category-card {
        padding: 2em 1.5em;
        border-radius: 20px;
    }
    
    .category-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1.3em;
    }
    
    .category-icon i {
        font-size: 1.8em;
    }
    
    .category-title {
        font-size: 1.15em;
        margin-bottom: 0.7em;
    }
    
    .category-description {
        font-size: 0.9em;
    }
    
    /* Featured Event */
    .featured-event-section {
        padding: 2.5em 0;
    }
    
    .featured-event-container {
        flex-direction: column;
        gap: 1.5em;
        padding: 0 1.2em;
    }
    
    .featured-event-image,
    .featured-event-content {
        width: 100%;
    }
    
    .featured-event-image img {
        border-radius: 12px;
    }
    
    .featured-event-card {
        padding: 1.8em 1.3em;
        border-radius: 20px;
    }
    
    .event-title {
        font-size: 1.4em;
        margin-bottom: 0.8em;
    }
    
    .event-meta-item {
        font-size: 0.85em;
        margin-bottom: 1em;
    }
    
    .event-stats {
        flex-direction: row;
        gap: 1.5em;
        justify-content: space-around;
    }
    
    .stat-item strong {
        font-size: 1.5em;
    }
    
    .stat-item span {
        font-size: 0.85em;
    }
    
    .event-description {
        font-size: 0.9em;
        margin-bottom: 1.5em;
    }
    
    .btn-case-study {
        width: 100%;
        padding: 0.9em 2em;
        font-size: 0.95rem;
        text-align: center;
    }
    
    /* Process Section */
    .process-section {
        padding: 2.5em 1.2em;
    }
    
    .process-header {
        margin-bottom: 2.5em;
    }
    
    .process-subtitle {
        font-size: 0.75em;
        letter-spacing: 2px;
    }
    
    .process-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    
    .process-description {
        font-size: 0.95em;
    }
    
    .process-container {
        flex-direction: column;
        gap: 1.5em;
        padding: 0;
    }
    
    .process-line {
        display: none;
    }
    
    .process-step {
        width: 100%;
    }
    
    .process-card {
        padding: 1.8em 1.3em;
        border-radius: 16px;
    }
    
    .process-number {
        width: 40px;
        height: 40px;
        font-size: 0.9em;
        top: -12px;
    }
    
    .process-icon {
        width: 60px;
        height: 60px;
        margin: 1.8em auto 1.2em;
    }
    
    .process-icon i {
        font-size: 1.8em;
    }
    
    .process-step-title {
        font-size: 1em;
        margin-bottom: 0.6em;
    }
    
    .process-step-description {
        font-size: 0.85em;
    }
    
    /* B2B Delegation */
    .b2b-delegation-section {
        padding: 2.5em 0;
    }
    
    .b2b-delegation-container {
        flex-direction: column;
        gap: 1.5em;
        padding: 0 1.2em;
    }
    
    .b2b-delegation-image,
    .b2b-delegation-content {
        width: 100%;
    }
    
    .b2b-delegation-image img {
        border-radius: 16px;
    }
    
    .b2b-delegation-card {
        padding: 1.8em 1.3em;
        border-radius: 20px;
    }
    
    .b2b-subtitle {
        font-size: 0.75em;
        letter-spacing: 2px;
    }
    
    .b2b-title {
        font-size: 1.5em;
        margin-bottom: 0.5em;
    }
    
    .b2b-intro {
        font-size: 0.95em;
        margin-bottom: 1.5em;
    }
    
    .b2b-features {
        gap: 1em;
        margin-bottom: 2em;
    }
    
    .b2b-feature-item {
        padding: 1em;
        gap: 1em;
        border-radius: 12px;
    }
    
    .b2b-feature-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .b2b-feature-icon i {
        font-size: 1.2em;
    }
    
    .b2b-feature-text h4 {
        font-size: 0.95em;
        margin-bottom: 0.3em;
    }
    
    .b2b-feature-text p {
        font-size: 0.85em;
    }
    
    .btn-b2b {
        width: 100%;
        padding: 0.95em 2em;
        font-size: 0.95rem;
        text-align: center;
    }
    
    /* Add-Ons Section */
    .addons-service-section {
        padding: 2.5em 1.2em;
    }
    
    .addons-service-header {
        margin-bottom: 2.5em;
    }
    
    .addons-subtitle {
        font-size: 0.75em;
        letter-spacing: 2px;
    }
    
    .addons-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    
    .addons-description {
        font-size: 0.95em;
    }
    
    .addons-service-grid {
        grid-template-columns: 1fr;
        gap: 1.2em;
    }
    
    .addon-card {
        padding: 1.8em 1.3em;
        border-radius: 16px;
    }
    
    .addon-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 1.3em;
    }
    
    .addon-icon-wrapper i {
        font-size: 2em;
    }
    
    .addon-title {
        font-size: 1.05em;
        margin-bottom: 0.6em;
    }
    
    .addon-description {
        font-size: 0.85em;
    }
    
    /* Gallery Section */
    .gallery-preview-section {
        padding: 2.5em 0;
    }
    
    .gallery-preview-header {
        margin-bottom: 2em;
        padding: 0 1.2em;
    }
    
    .gallery-subtitle {
        font-size: 0.75em;
        letter-spacing: 2px;
    }
    
    .gallery-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    
    .gallery-preview-slider {
        padding: 0 1.2em 1.5em;
        gap: 1em;
    }
    
    .gallery-preview-item {
        width: 280px;
        height: 190px;
        border-radius: 16px;
    }
    
    .gallery-preview-button {
        margin-top: 2em;
        padding: 0 1.2em;
    }
    
    .btn-gallery {
        width: 100%;
        max-width: 350px;
        padding: 0.95em 2em;
        font-size: 0.95rem;
    }
    
    /* Stats Section */
    .stats-achievement-section {
        padding: 2.5em 1.2em;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 2em;
    }
    
    .stat-item-large {
        padding: 1.5em 1em;
    }
    
    .stat-number {
        font-size: 3rem;
        letter-spacing: -1px;
    }
    
    .stat-label {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }
    
    .stat-sublabel {
        font-size: 0.85em;
    }
    
    /* Final CTA */
    .final-cta-section {
        padding: 3em 1.2em;
    }
    
    .final-cta-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
        margin-bottom: 0.5em;
    }
    
    .final-cta-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2em;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        gap: 0.8em;
        width: 100%;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        padding: 0.95em 2em;
        font-size: 0.95rem;
        justify-content: center;
    }
}

/* ========================================
   EXTRA SMALL MOBILE (max-width: 375px)
   ======================================== */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .category-card,
    .process-card,
    .addon-card,
    .featured-event-card,
    .b2b-delegation-card {
        padding: 1.5em 1.2em;
    }
    
    .process-title,
    .gallery-title,
    .addons-title {
        font-size: 1.4rem;
    }
    
    .b2b-title {
        font-size: 1.3em;
    }
    
    .final-cta-title {
        font-size: 1.4rem;
    }
}

/* ========================================
   LANDSCAPE ORIENTATION
   ======================================== */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-banner {
        height: 100vh;
        min-height: 400px;
    }
    
    .hero-content {
        padding: 1em;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.3em;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1em;
    }
    
    .hero-buttons {
        gap: 0.6em;
        flex-direction: row;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.7em 1.5em;
        font-size: 0.85rem;
    }
}

/* ========================================
   TOUCH DEVICE OPTIMIZATIONS
   ======================================== */
@media (hover: none) and (pointer: coarse) {
    .category-card,
    .addon-card,
    .process-card,
    .b2b-feature-item {
        cursor: default;
    }
    
    .category-card:active,
    .addon-card:active,
    .process-card:active {
        transform: scale(0.98);
    }
    
    .btn-primary:active,
    .btn-secondary:active,
    .btn-case-study:active,
    .btn-b2b:active,
    .btn-gallery:active,
    .btn-cta-primary:active,
    .btn-cta-secondary:active {
        transform: scale(0.95);
    }
}

/* ========================================
   HIGH DPI DISPLAYS
   ======================================== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .featured-event-image img,
    .b2b-delegation-image img,
    .gallery-preview-item img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .hero-buttons,
    .btn-case-study,
    .btn-b2b,
    .btn-gallery,
    .final-cta-buttons,
    .gallery-preview-slider {
        display: none;
    }
    
    .hero-banner,
    .featured-event-section,
    .b2b-delegation-section {
        page-break-inside: avoid;
    }
    
    .category-section,
    .process-section,
    .addons-service-section {
        page-break-before: always;
    }
}