@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800;900&display=swap');

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.scomm-el-home, .scomm-el-home * {
  box-sizing: border-box;
}

.scomm-el-home {
  --red: #ed1119;
  --dark: #030406;
  --dark-glass: rgba(10, 12, 18, 0.65);
  --dark-glass-border: rgba(255, 255, 255, 0.08);
  --font-title: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  font-family: var(--font-body);
  background: #f4f5f7;
  color: #101219;
}

/* Header & Navigation */
.scomm-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
}
.scomm-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}
.scomm-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.scomm-logo {
  height: 44px !important;
  width: auto !important;
  max-width: 180px !important;
  display: block !important;
  object-fit: contain !important;
}
.scomm-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.scomm-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: color 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  padding: 8px 0;
  text-decoration: none;
}
.scomm-nav a:hover {
  color: #fff;
}
.scomm-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 2px;
}
.scomm-nav a.active {
  color: var(--red);
}
.scomm-nav a.active::after,
.scomm-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Dropdown Menu Styles */
.scomm-nav-dropdown-wrapper {
  position: relative;
  display: inline-block;
}
.scomm-nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.scomm-nav-dropdown-toggle .dropdown-caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.3s ease;
  margin-top: 1px;
}
.scomm-nav-dropdown-wrapper:hover .scomm-nav-dropdown-toggle .dropdown-caret {
  transform: rotate(180deg);
}
.scomm-nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px) scale(0.95);
  background: rgba(10, 12, 18, 0.96);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px 0;
  width: 260px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.3s;
  z-index: 120;
}
.scomm-nav-dropdown-wrapper:hover .scomm-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(6px) scale(1);
}
.scomm-nav-dropdown-menu a {
  display: block !important;
  padding: 10px 20px !important;
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  font-family: var(--font-title) !important;
  font-weight: 600 !important;
  transition: all 0.25s ease !important;
  border-radius: 0 !important;
  text-align: left !important;
}
.scomm-nav-dropdown-menu a::after {
  display: none !important;
}
.scomm-nav-dropdown-menu a:hover {
  color: #fff !important;
  background: rgba(237, 17, 25, 0.12) !important;
  padding-left: 24px !important;
}
.scomm-nav-dropdown-menu a.active {
  color: var(--red) !important;
  background: rgba(237, 17, 25, 0.08) !important;
}
.scomm-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.scomm-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 6px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.scomm-action-btn.btn-phone {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.35);
}
.scomm-action-btn.btn-phone:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}
.scomm-action-btn.btn-touch {
  color: #fff;
  background: var(--red);
}
.scomm-action-btn.btn-touch:hover {
  background: #d00f16;
  box-shadow: 0 6px 16px rgba(237, 17, 25, 0.4);
}
.scomm-action-btn svg {
  width: 14px;
  height: 14px;
}

/* Mobile Toggle */
.scomm-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 150;
}
.scomm-menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section */
.scomm-hero {
  position: relative;
  background: var(--dark) url('https://demo.scomm.com.my/wp-content/uploads/scomm-home/hero-telecom-city.png') no-repeat center right / cover;
  min-height: 720px;
  padding-top: 140px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.scomm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 4, 6, 0.98) 0%, rgba(3, 4, 6, 0.85) 40%, rgba(3, 4, 6, 0.4) 70%, rgba(3, 4, 6, 0.8) 100%);
  z-index: 1;
}

/* Red slant accent on left edge */
.scomm-hero-left-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 260px;
  height: 100%;
  background: linear-gradient(to right, rgba(237, 17, 25, 0.85), transparent);
  clip-path: polygon(0 0, 80% 0, 30% 100%, 0 100%);
  z-index: 2;
  opacity: 0.9;
}
.scomm-hero-left-accent::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.25) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: 0.6;
}

.scomm-hero-inner {
  position: relative;
  z-index: 10;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.scomm-hero-content {
  display: flex;
  flex-direction: column;
}
.scomm-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--red);
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}
.scomm-eyebrow .eyebrow-line {
  height: 2px;
  width: 60px;
  background: linear-gradient(90deg, var(--red) 30%, rgba(255, 255, 255, 0.4) 30%);
}
.scomm-title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 48px;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 18px 0;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.scomm-title .text-red {
  color: var(--red);
}
.scomm-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 0 28px 0;
}
.scomm-hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
}
.scomm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.scomm-btn.btn-primary {
  background: var(--red);
  color: #fff;
}
.scomm-btn.btn-primary:hover {
  background: #d00f16;
  box-shadow: 0 8px 20px rgba(237, 17, 25, 0.4);
}
.scomm-btn.btn-primary svg {
  width: 14px;
  height: 14px;
}
.scomm-btn.btn-video {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
}
.scomm-btn.btn-video:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.scomm-btn .play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  color: var(--dark);
}
.scomm-btn .play-icon svg {
  width: 10px;
  height: 10px;
  margin-left: 2px;
}

/* Floating Feature Cards */
.scomm-hero-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-self: end;
  width: 100%;
  max-width: 330px;
}
.scomm-hero-card {
  background: var(--dark-glass);
  border: 1px solid var(--dark-glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}
.scomm-hero-card:hover {
  transform: translateY(-3px);
  border-color: rgba(237, 17, 25, 0.3);
  box-shadow: 0 12px 30px rgba(237, 17, 25, 0.12);
}
.scomm-hero-card .card-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(237, 17, 25, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.scomm-hero-card:hover .card-icon-wrap {
  background: var(--red);
  color: #fff;
}
.scomm-hero-card .card-icon {
  width: 18px;
  height: 18px;
}
.scomm-hero-card .card-text h3 {
  color: #fff;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 14px;
  margin: 0 0 3px 0;
}
.scomm-hero-card .card-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  line-height: 1.4;
  margin: 0;
}

/* Slider bottom details */
.scomm-hero-bottom {
  position: absolute;
  bottom: 24px;
  left: 0;
  width: 100%;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 15;
}
.scomm-slider-dots {
  display: flex;
  gap: 8px;
}
.scomm-slider-dots .dot {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
}
.scomm-slider-dots .dot.active {
  background: var(--red);
  width: 36px;
}
.scomm-slider-nav {
  position: absolute;
  right: 24px;
  display: flex;
  gap: 10px;
}
.scomm-slider-nav .nav-arrow {
  width: 40px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.scomm-slider-nav .nav-arrow:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}
.scomm-slider-nav .nav-arrow svg {
  width: 16px;
  height: 16px;
}

/* Stats Section */
.scomm-stats-section {
  position: relative;
  z-index: 25;
  margin-top: -45px;
  padding: 0 24px;
}
.scomm-stats-container {
  max-width: 1140px;
  margin: 0 auto;
  background: var(--dark-glass);
  border: 1px solid var(--dark-glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 18px 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.scomm-stat-col {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.scomm-stat-col:last-child {
  border-right: none;
}
.scomm-stat-col .stat-icon-wrap {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
}
.scomm-stat-col .stat-icon {
  width: 28px;
  height: 28px;
}
.scomm-stat-col .stat-info {
  display: flex;
  flex-direction: column;
}
.scomm-stat-col .stat-number {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 22px;
  color: var(--red);
  line-height: 1.1;
}
.scomm-stat-col .stat-label {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.8px;
  line-height: 1.3;
  margin-top: 2px;
}

/* About Us Section */
.scomm-about {
  background: #f4f5f7;
  padding: 80px 0 60px 0;
  position: relative;
  overflow: hidden;
}
.scomm-about::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(rgba(237, 17, 25, 0.15) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  opacity: 0.7;
}
.scomm-about::after {
  content: '';
  position: absolute;
  left: 20px;
  top: 50px;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(rgba(0, 0, 0, 0.05) 1.5px, transparent 1.5px);
  background-size: 15px 15px;
  z-index: 1;
}
.scomm-about-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
}
.scomm-about-copy {
  display: flex;
  flex-direction: column;
}
.scomm-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--red);
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.scomm-kicker .kicker-line {
  height: 2px;
  width: 40px;
  background: var(--red);
}
.scomm-about-copy h2 {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 32px;
  color: var(--dark);
  margin: 0 0 16px 0;
  line-height: 1.15;
  text-transform: uppercase;
}
.scomm-about-copy p {
  font-size: 14px;
  color: #555c66;
  line-height: 1.65;
  margin: 0 0 24px 0;
}
.scomm-about-copy .btn-primary {
  align-self: flex-start;
}

/* Slanted Parallel Cards */
.scomm-services-slanted {
  display: flex;
  gap: 14px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}
.scomm-slanted-card {
  position: relative;
  flex: 1;
  height: 380px;
  transform: skewX(-12deg);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
}
.scomm-slanted-card:hover {
  flex: 1.25;
  transform: skewX(-12deg) translateY(-6px);
  box-shadow: 0 20px 35px rgba(237, 17, 25, 0.15);
  border-color: rgba(237, 17, 25, 0.4);
}
.scomm-slanted-card .card-bg {
  position: absolute;
  inset: -2px;
  background-size: cover;
  background-position: center;
  transform: skewX(12deg) scale(1.2);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.scomm-slanted-card:hover .card-bg {
  transform: skewX(12deg) scale(1.3);
}
.scomm-slanted-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 4, 6, 0.1) 0%, rgba(3, 4, 6, 0.6) 50%, rgba(3, 4, 6, 0.95) 100%);
  z-index: 1;
  transition: opacity 0.3s ease;
}
.scomm-slanted-card:hover .card-overlay {
  background: linear-gradient(180deg, rgba(237, 17, 25, 0.05) 0%, rgba(3, 4, 6, 0.5) 40%, rgba(3, 4, 6, 0.95) 100%);
}
.scomm-slanted-card .card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transform: skewX(12deg);
  color: #fff;
}
.scomm-slanted-card .service-icon-wrap {
  width: 38px;
  height: 38px;
  background: var(--red);
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 6px 15px rgba(237, 17, 25, 0.3);
  transition: transform 0.3s ease;
}
.scomm-slanted-card:hover .service-icon-wrap {
  transform: scale(1.1);
}
.scomm-slanted-card .service-icon {
  width: 18px;
  height: 18px;
}
.scomm-slanted-card h3 {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 14px;
  line-height: 1.25;
  margin: 0 0 10px 0;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.scomm-slanted-card p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.45;
  margin: 0 0 16px 0;
}
.scomm-slanted-card .service-hover-line {
  height: 3px;
  width: 30px;
  background: var(--red);
  transition: width 0.3s ease;
}
.scomm-slanted-card:hover .service-hover-line {
  width: 50px;
}

/* Footer Styles */
.scomm-footer {
  background: #090a0f;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.scomm-footer-top {
  padding: 70px 0 50px 0;
  position: relative;
}
.scomm-footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 60px;
}
.scomm-footer-col {
  display: flex;
  flex-direction: column;
}
.scomm-footer-logo-link {
  display: inline-block;
  margin-bottom: 20px;
}
.scomm-footer-logo {
  height: 40px !important;
  width: auto !important;
  max-width: 165px !important;
  display: block !important;
  object-fit: contain !important;
}
.scomm-footer-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 24px 0;
}
.scomm-socials {
  display: flex;
  gap: 12px;
}
.scomm-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  text-decoration: none;
}
.scomm-socials a:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(237, 17, 25, 0.3);
}
.scomm-socials svg {
  width: 16px;
  height: 16px;
}

.scomm-footer-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 20px 0;
  color: #fff;
  position: relative;
  padding-bottom: 8px;
}
.scomm-footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--red);
}

.scomm-footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.scomm-footer-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: block;
}
.scomm-footer-links a:hover {
  color: var(--red);
  padding-left: 6px;
}

.scomm-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.scomm-footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.5;
}
.scomm-footer-contact li svg {
  width: 16px;
  height: 16px;
  color: var(--red);
  margin-top: 2px;
  flex-shrink: 0;
}
.scomm-footer-contact li a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.3s ease;
}
.scomm-footer-contact li a:hover {
  color: var(--red);
}

.scomm-footer-bottom {
  background: #06070a;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.scomm-footer-bottom-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.scomm-footer-bottom p {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
.scomm-back-to-top {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  text-decoration: none;
}
.scomm-back-to-top:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: translateY(-3px);
}
.scomm-back-to-top svg {
  width: 16px;
  height: 16px;
}

.scomm-footer-disclaimer {
  background: #030406;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.scomm-footer-disclaimer-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.scomm-footer-disclaimer p {
  margin: 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
}
.scomm-footer-disclaimer a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
  transition: color 0.3s ease;
}
.scomm-footer-disclaimer a:hover {
  color: var(--red);
}

/* Responsiveness breakpoints */
@media (max-width: 1200px) {
  .scomm-header-inner {
    padding: 0 16px;
  }
  .scomm-hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
  }
  .scomm-title {
    font-size: 42px;
  }
  .scomm-stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 24px;
  }
  .scomm-stat-col {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 16px;
  }
  .scomm-stat-col:nth-child(even) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .scomm-stat-col:nth-last-child(-n+2) {
    border-bottom: none;
    padding-bottom: 0;
  }
  .scomm-about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .scomm-about-copy {
    max-width: 600px;
  }
}

@media (max-width: 992px) {
  .scomm-menu-toggle {
    display: flex;
  }
  .scomm-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: rgba(10, 12, 18, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    padding: 110px 40px 40px 40px;
    gap: 28px;
    align-items: flex-start;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: -15px 0 40px rgba(0,0,0,0.6);
    z-index: 120;
  }
  .scomm-nav.open {
    right: 0;
  }
  .scomm-nav a::after {
    bottom: -4px;
  }
  
  /* Mobile Dropdown Overrides */
  .scomm-nav-dropdown-wrapper {
    width: 100%;
  }
  .scomm-nav-dropdown-wrapper:hover .scomm-nav-dropdown-toggle .dropdown-caret {
    transform: none; /* Disable hover flip on mobile */
  }
  .scomm-nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }
  .scomm-nav-dropdown-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 10px 0 0 16px !important;
    display: none !important;
    width: 100% !important;
  }
  .scomm-nav-dropdown-wrapper:hover .scomm-nav-dropdown-menu,
  .scomm-nav-dropdown-wrapper.active .scomm-nav-dropdown-menu {
    display: block !important;
  }
  .scomm-nav-dropdown-menu a {
    padding: 8px 0 !important;
    font-size: 11px !important;
    border-radius: 0 !important;
    text-shadow: none !important;
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .scomm-nav-dropdown-menu a:hover {
    background: transparent !important;
    color: var(--red) !important;
    padding-left: 6px !important;
  }
  .scomm-nav-dropdown-menu a.active {
    background: transparent !important;
    color: var(--red) !important;
  }

  .scomm-actions {
    display: none;
  }
  .scomm-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
  }
  .scomm-eyebrow {
    justify-content: center;
  }
  .scomm-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .scomm-hero-btns {
    justify-content: center;
  }
  .scomm-hero-cards {
    margin: 30px auto 0 auto;
  }
  .scomm-services-slanted {
    flex-direction: column;
    gap: 20px;
    padding: 0;
  }
  .scomm-slanted-card {
    transform: none;
    height: 300px;
  }
  .scomm-slanted-card:hover {
    transform: translateY(-6px);
  }
  .scomm-slanted-card .card-bg {
    transform: none;
  }
  .scomm-slanted-card:hover .card-bg {
    transform: scale(1.1);
  }
  .scomm-slanted-card .card-content {
    transform: none;
    padding: 24px 20px;
  }
  .scomm-footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .scomm-title {
    font-size: 32px;
  }
  .scomm-stats-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .scomm-stat-col {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 14px;
    justify-content: flex-start;
  }
  .scomm-stat-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* ============================================================
   NATIVE ELEMENTOR WIDGET STYLING - Home Page Rebuild
   Applied via _css_classes on widgets / columns / sections
   ============================================================ */

:root {
  --scomm-red: #ed1119;
  --scomm-dark: #030406;
  --scomm-font-title: 'Montserrat', sans-serif;
  --scomm-font-body: 'Inter', sans-serif;
}
body { font-family: var(--scomm-font-body, 'Inter', sans-serif); }

/* HERO SECTION */
.scomm-hero-section.elementor-section {
  background: var(--scomm-dark) url('https://demo.scomm.com.my/wp-content/uploads/scomm-home/hero-telecom-city.png') no-repeat center right / cover !important;
  min-height: 720px !important;
  position: relative;
  overflow: hidden;
}
.scomm-hero-section.elementor-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,4,6,0.98) 0%, rgba(3,4,6,0.85) 40%, rgba(3,4,6,0.4) 70%, rgba(3,4,6,0.8) 100%);
  z-index: 1;
}
.scomm-hero-section.elementor-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 260px; height: 100%;
  background: linear-gradient(to right, rgba(237,17,25,0.85), transparent);
  clip-path: polygon(0 0, 80% 0, 30% 100%, 0 100%);
  z-index: 2;
}
.scomm-hero-section > .elementor-container {
  position: relative;
  z-index: 10;
  min-height: 720px !important;
  align-items: center !important;
}
/* Hero eyebrow */
.scomm-eyebrow .elementor-heading-title {
  color: var(--scomm-red) !important;
  font-family: var(--scomm-font-title) !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
}
/* Hero H1 */
.scomm-title .elementor-heading-title {
  font-family: var(--scomm-font-title) !important;
  font-weight: 900 !important;
  font-size: 48px !important;
  line-height: 1.15 !important;
  color: #fff !important;
  text-transform: uppercase !important;
}
/* Hero subtitle */
.scomm-subtitle .elementor-widget-container p {
  color: rgba(255,255,255,0.8) !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
}
/* Hero buttons */
.scomm-hero-btn .elementor-button {
  font-family: var(--scomm-font-title) !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 12px 24px !important;
  border-radius: 6px !important;
}
.scomm-hero-btn.btn-primary .elementor-button {
  background: var(--scomm-red) !important;
  color: #fff !important;
}
.scomm-hero-btn.btn-video .elementor-button {
  background: rgba(0,0,0,0.25) !important;
  border: 1px solid rgba(255,255,255,0.4) !important;
  color: #fff !important;
}
/* Hero icon-box cards */
.scomm-hero-card .elementor-widget-container {
  background: rgba(10,12,18,0.65) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  backdrop-filter: blur(12px) !important;
  border-radius: 8px !important;
  padding: 14px 18px !important;
  margin-bottom: 14px;
}
.scomm-hero-card .elementor-icon { color: var(--scomm-red) !important; }
.scomm-hero-card .elementor-icon-box-title { color: #fff !important; font-family: var(--scomm-font-title) !important; font-weight: 700 !important; font-size: 14px !important; }
.scomm-hero-card .elementor-icon-box-description { color: rgba(255,255,255,0.7) !important; font-size: 11px !important; }

/* STATS BAR */
.scomm-stats-section.elementor-section {
  position: relative;
  z-index: 25;
  margin-top: -45px;
}
.scomm-stats-section > .elementor-container {
  background: rgba(10,12,18,0.65) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  backdrop-filter: blur(16px) !important;
  border-radius: 10px !important;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4) !important;
  max-width: 1140px;
}
.scomm-stat-col.elementor-column > .elementor-widget-wrap {
  border-right: 1px solid rgba(255,255,255,0.1);
  padding: 18px 20px;
  justify-content: center;
}
.scomm-stat-col.last.elementor-column > .elementor-widget-wrap {
  border-right: none;
}
.scomm-stat-item .elementor-icon { color: #fff !important; }
.scomm-stat-item .elementor-icon-box-title { font-family: var(--scomm-font-title) !important; font-weight: 900 !important; font-size: 22px !important; color: var(--scomm-red) !important; }
.scomm-stat-nationwide .elementor-icon-box-title { font-size: 16px !important; }
.scomm-stat-item .elementor-icon-box-description { font-family: var(--scomm-font-title) !important; font-weight: 700 !important; font-size: 10px !important; color: rgba(255,255,255,0.9) !important; letter-spacing: 0.8px !important; }

/* ABOUT SECTION */
.scomm-about-section.elementor-section { background: #f4f5f7 !important; }
.scomm-kicker-text .elementor-heading-title { color: var(--scomm-red) !important; font-family: var(--scomm-font-title) !important; font-weight: 800 !important; font-size: 12px !important; text-transform: uppercase !important; letter-spacing: 1.5px !important; }
.scomm-about-heading .elementor-heading-title { font-family: var(--scomm-font-title) !important; font-weight: 900 !important; font-size: 32px !important; color: var(--scomm-dark) !important; text-transform: uppercase !important; }
.scomm-about-text .elementor-widget-container p { font-size: 14px !important; color: #555c66 !important; line-height: 1.65 !important; }
.scomm-about-copy-col .elementor-button { background: var(--scomm-red) !important; color: #fff !important; font-family: var(--scomm-font-title) !important; font-weight: 700 !important; font-size: 12px !important; text-transform: uppercase !important; padding: 12px 24px !important; border-radius: 6px !important; }

/* Service image-box cards */
.scomm-services-col > .elementor-widget-wrap { display: flex !important; flex-direction: row !important; gap: 8px !important; flex-wrap: nowrap !important; }
.scomm-slanted-card .elementor-image-box-img img { height: 220px !important; width: 100% !important; object-fit: cover !important; transition: transform 0.5s ease !important; }
.scomm-slanted-card:hover .elementor-image-box-img img { transform: scale(1.08) !important; }
.scomm-slanted-card .elementor-image-box-content { background: rgba(3,4,6,0.85); padding: 14px 16px; }
.scomm-slanted-card .elementor-image-box-title { font-family: var(--scomm-font-title) !important; font-weight: 800 !important; font-size: 12px !important; color: #fff !important; text-transform: uppercase !important; }
.scomm-slanted-card .elementor-image-box-description { color: rgba(255,255,255,0.75) !important; font-size: 11px !important; }